pub struct Base16 { /* private fields */ }
Trait Implementations§
Source§impl Encoding for Base16
impl Encoding for Base16
type EncodeOutput = String
type DecodeOutput = Result<Vec<u8>, DecodeError>
fn encode<T>(value: T) -> Self::EncodeOutputwhere
T: Encodable<Self>,
fn decode<T>(value: T) -> Self::DecodeOutputwhere
T: Decodable<Self>,
Auto Trait Implementations§
impl Freeze for Base16
impl RefUnwindSafe for Base16
impl Send for Base16
impl Sync for Base16
impl Unpin for Base16
impl UnwindSafe for Base16
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