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.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more