You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous PR introduced conversions between Vec<u8> and Blob, as well as from &[u8] to Blob. However, these changes do not immediately improve the ergonomics of the following method call (example from kms):
This issue tracks a complementary task for #3877.
The previous PR introduced conversions between
Vec<u8>
andBlob
, as well as from&[u8]
toBlob
. However, these changes do not immediately improve the ergonomics of the following method call (example fromkms
):To enhance the ergonomics of call sites, this codegen update modifies the method signature to accept
Option<impl Into<Blob>>
.The text was updated successfully, but these errors were encountered: