pub struct FixedHex<const N: usize>;
Expand description
Text codec transforming text to binary using hexadecimal nibbles.
The length must be known at compile-time.
Trait Implementations§
Source§impl<const N: usize> TextCodec<[u8; N]> for FixedHex<N>
impl<const N: usize> TextCodec<[u8; N]> for FixedHex<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for FixedHex<N>
impl<const N: usize> RefUnwindSafe for FixedHex<N>
impl<const N: usize> Send for FixedHex<N>
impl<const N: usize> Sync for FixedHex<N>
impl<const N: usize> Unpin for FixedHex<N>
impl<const N: usize> UnwindSafe for FixedHex<N>
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