pub struct Hex<Case = Lower>(/* private fields */)
where
Case: Case;Available on crate feature
serde only.Expand description
Hex-encoding strategy
Trait Implementations§
Source§impl<'a, C: Case> ByteDecoder<'a> for Hex<C>
impl<'a, C: Case> ByteDecoder<'a> for Hex<C>
Source§type InitError = DecodeInitError
type InitError = DecodeInitError
Error returned when decoder can’t be created. Read more
Source§type DecodeError = DecodeError
type DecodeError = DecodeError
Error returned when decoding fails. Read more
Auto Trait Implementations§
impl<Case> Freeze for Hex<Case>
impl<Case> RefUnwindSafe for Hex<Case>where
Case: RefUnwindSafe,
impl<Case> Send for Hex<Case>where
Case: Send,
impl<Case> Sync for Hex<Case>where
Case: Sync,
impl<Case> Unpin for Hex<Case>where
Case: Unpin,
impl<Case> UnwindSafe for Hex<Case>where
Case: 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