pub type B64<T = ByteBuf> = BytesWrapper<T, (B64Encoding<Base64>,)>;Expand description
Wrapper around T implementing (de)serialization using base64ct::Base64.
Aliased Type§
pub struct B64<T = ByteBuf> {
inner: T,
phantom: PhantomData<(B64Encoding<Base64>,)>,
}Fields§
§inner: T§phantom: PhantomData<(B64Encoding<Base64>,)>