Trait engine::vault::Base64Decodable[][src]

pub trait Base64Decodable: Sized {
    fn from_base64(base: impl AsRef<[u8]>) -> Result<Self>;
}

a trait to make types base64 decodable

Required methods

fn from_base64(base: impl AsRef<[u8]>) -> Result<Self>[src]

Loading content...

Implementations on Foreign Types

impl Base64Decodable for Vec<u8>[src]

Loading content...

Implementors

Loading content...