pub trait AppendBase64Encode: FromBase64Encode {
// Required method
fn append_base64_encode(base64: &Base64, src: &[u8], dst: &mut Self);
}
Expand description
Types that can append a base64 string.
Required Methods§
Sourcefn append_base64_encode(base64: &Base64, src: &[u8], dst: &mut Self)
fn append_base64_encode(base64: &Base64, src: &[u8], dst: &mut Self)
Encodes bytes to a base64 string and appends into the self type.
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.