pub struct Config { /* private fields */ }
Expand description
Contains configuration parameters for base64 encoding
Implementations§
source§impl Config
impl Config
sourcepub const fn new(char_set: CharacterSet, pad: bool) -> Config
pub const fn new(char_set: CharacterSet, pad: bool) -> Config
Create a new Config
.
sourcepub const fn decode_allow_trailing_bits(self, allow: bool) -> Config
pub const fn decode_allow_trailing_bits(self, allow: bool) -> Config
Sets whether to emit errors for nonzero trailing bits.
This is useful when implementing forgiving-base64 decode.