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

Character set to use

newline

Newline to use

pad

True to pad output with = characters

line_length

Some(len) to wrap lines at len, None to disable line wrapping

Trait Implementations

Derived Implementations

impl Debug for Config

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

impl Copy for Config

impl Clone for Config

fn clone(&self) -> Config

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