pub struct Base64<Filter: TextFilter = NoFilter>(/* private fields */);
Expand description
Text codec transforming text to binary using standard base64.
The Filter
type argument can be used to employ additional preprocessing
of incoming text data. Most interestingly, passing StripWhitespace
will make the implementation ignore any whitespace within the text.
Trait Implementations§
Auto Trait Implementations§
impl<Filter> Freeze for Base64<Filter>
impl<Filter> RefUnwindSafe for Base64<Filter>where
Filter: RefUnwindSafe,
impl<Filter> Send for Base64<Filter>where
Filter: Send,
impl<Filter> Sync for Base64<Filter>where
Filter: Sync,
impl<Filter> Unpin for Base64<Filter>where
Filter: Unpin,
impl<Filter> UnwindSafe for Base64<Filter>where
Filter: UnwindSafe,
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