Trait engine::vault::Base64Encodable[][src]

pub trait Base64Encodable {
    fn base64(&self) -> String;
}

a trait to make types base64 encodable

Required methods

fn base64(&self) -> String[src]

Loading content...

Implementors

impl<T: AsRef<[u8]>> Base64Encodable for T[src]

Loading content...