pub trait AppendBase64Decode: FromBase64Decode {
    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§

Decodes a base64 string to bytes and appends to the self type.

Errors

This function returns Err if the content of src is invalid.

Implementations on Foreign Types§

Implementors§