pub enum BinaryToTextEncoding {
Base32,
Base64,
Base64Url,
Hex,
Binary,
}Expand description
Enumeration of encoding options for binary data to text.
Variants§
Trait Implementations§
Source§impl Clone for BinaryToTextEncoding
impl Clone for BinaryToTextEncoding
Source§fn clone(&self) -> BinaryToTextEncoding
fn clone(&self) -> BinaryToTextEncoding
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BinaryToTextEncoding
Auto Trait Implementations§
impl Freeze for BinaryToTextEncoding
impl RefUnwindSafe for BinaryToTextEncoding
impl Send for BinaryToTextEncoding
impl Sync for BinaryToTextEncoding
impl Unpin for BinaryToTextEncoding
impl UnwindSafe for BinaryToTextEncoding
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