Trait base64_simd::FromBase64Decode
source · pub trait FromBase64Decode: Sized {
fn from_base64_decode(base64: &Base64, data: &[u8]) -> Result<Self, Error>;
}
Expand description
Types that can be decoded from a base64 string.
Required Methods§
Implementations on Foreign Types§
source§impl FromBase64Decode for Box<[u8]>
Available on crate feature alloc
only.
impl FromBase64Decode for Box<[u8]>
Available on crate feature
alloc
only.source§impl FromBase64Decode for Vec<u8>
Available on crate feature alloc
only.
impl FromBase64Decode for Vec<u8>
Available on crate feature
alloc
only.