Struct base64::Config [−][src]
pub struct Config { /* fields omitted */ }
Contains configuration parameters for base64 encoding
Implementations
impl Config
[src]
impl Config
[src]pub const fn new(char_set: CharacterSet, pad: bool) -> Config
[src]
Create a new Config
.
pub const fn pad(self, pad: bool) -> Config
[src]
Sets whether to pad output with =
characters.
pub const fn decode_allow_trailing_bits(self, allow: bool) -> Config
[src]
Sets whether to emit errors for nonzero trailing bits.
This is useful when implementing forgiving-base64 decode.