pub trait Base64Decodable: Sized {
type Error;
// Required method
fn from_base64(base: impl AsRef<[u8]>) -> Result<Self, Self::Error>;
}Expand description
a trait to make types base64 decodable
Required Associated Types§
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.