Struct b64::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

Character set to use

Newline to use

True to pad output with = characters

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

Trait Implementations

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Config
[src]

impl Debug for Config
[src]

Formats the value using the given formatter.