Trait lockchain_core::traits::Base64AutoEncoder [−][src]
pub trait Base64AutoEncoder {
fn to_base64(&self) -> String;
fn from_base64(base64: &str) -> String;
}Include this trait to monkey-patch base64 functions onto String types
Required Methods
fn to_base64(&self) -> String
fn from_base64(base64: &str) -> String
Implementations on Foreign Types
impl Base64AutoEncoder for String[src]
impl Base64AutoEncoder for Stringimpl Base64AutoEncoder for Vec<u8>[src]
impl Base64AutoEncoder for Vec<u8>