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 Debug for Config
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result[]

Formats the value using the given formatter.

impl Copy for Config
[src]

impl Clone for Config
[src]

fn clone(&self) -> Config[]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0
[]

Performs copy-assignment from source. Read more