pub trait FromBase64Decode: Sized {
// Required method
fn from_base64_decode(base64: &Base64, data: &[u8]) -> Result<Self, Error>;
}Expand description
Types that can be decoded from a base64 string.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
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.