pub trait AppendBase64Encode: FromBase64Encode {
    fn append_base64_encode(base64: &Base64, src: &[u8], dst: &mut Self);
}
Expand description

Types that can append a base64 string.

Required Methods§

Encodes bytes to a base64 string and appends into the self type.

Implementations on Foreign Types§

Implementors§