pub struct Base64;
Available on crate feature
base64
only.Expand description
Text codec transforming text to binary using standard base64
.
Base64
uses the base64::engine::general_purpose::STANDARD
engine.
TextCodec
is also automatically implemented for any value which
implements base64::engine::Engine
, allowing you to choose different
alphabets easily.
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