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.
Object Safety§
This trait is not object safe.