Trait rustc_serialize::base64::ToBase64 [−][src]
A trait for converting a value to base64 encoding.
Required Methods
fn to_base64(&self, config: Config) -> String
Converts the value of self
to a base64 value following the specified
format configuration, returning the owned string.
Implementations on Foreign Types
impl ToBase64 for [u8]
[src]
impl ToBase64 for [u8]
impl<'a, T: ?Sized + ToBase64> ToBase64 for &'a T
[src]
impl<'a, T: ?Sized + ToBase64> ToBase64 for &'a T