pub struct Base64;
Available on crate feature
base64
only.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§
Source§impl<'x> TextCodec<Cow<'x, [u8]>> for Base64
impl<'x> TextCodec<Cow<'x, [u8]>> for Base64
Source§impl<T> TextCodec<Option<T>> for Base64
impl<T> TextCodec<Option<T>> for Base64
Auto Trait Implementations§
impl Freeze for Base64
impl RefUnwindSafe for Base64
impl Send for Base64
impl Sync for Base64
impl Unpin for Base64
impl UnwindSafe for Base64
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