Struct rustc_serialize::base64::Config [−][src]
pub struct Config {
pub char_set: CharacterSet,
pub newline: Newline,
pub pad: bool,
pub line_length: Option<usize>,
}Contains configuration parameters for to_base64.
Fields
char_set: CharacterSet
Character set to use
newline: Newline
Newline to use
pad: bool
True to pad output with = characters
line_length: Option<usize>
Some(len) to wrap lines at len, None to disable line wrapping
Trait Implementations
impl Clone for Config[src]
impl Clone for Configfn clone(&self) -> Config[src]
fn clone(&self) -> ConfigReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Config[src]
impl Copy for Configimpl Debug for Config[src]
impl Debug for Config