pub trait FromBase64Encode: Sized {
    fn from_base64_encode(base64: &Base64, data: &[u8]) -> Self;
}
Expand description

Types that can represent a base64 string.

Required Methods§

Encodes bytes to a base64 string and returns the self type.

Implementations on Foreign Types§

Implementors§