pub trait AppendBase64Decode: FromBase64Decode {
// Required method
fn append_base64_decode(
base64: &Base64,
src: &[u8],
dst: &mut Self,
) -> Result<(), Error>;
}
Expand description
Types that can append bytes decoded from 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.