pub struct DisplayArray<'a, const CAP: usize> { /* private fields */ }
Expand description
Displays byte array as hex.
Created by <&[u8; CAP / 2] as DisplayHex>::as_hex
.
Trait Implementations§
Source§impl<'a, const LEN: usize> Debug for DisplayArray<'a, LEN>
impl<'a, const LEN: usize> Debug for DisplayArray<'a, LEN>
Source§impl<'a, const LEN: usize> Display for DisplayArray<'a, LEN>
impl<'a, const LEN: usize> Display for DisplayArray<'a, LEN>
Source§impl<'a, const LEN: usize> LowerHex for DisplayArray<'a, LEN>
impl<'a, const LEN: usize> LowerHex for DisplayArray<'a, LEN>
Auto Trait Implementations§
impl<'a, const CAP: usize> Freeze for DisplayArray<'a, CAP>
impl<'a, const CAP: usize> RefUnwindSafe for DisplayArray<'a, CAP>
impl<'a, const CAP: usize> Send for DisplayArray<'a, CAP>
impl<'a, const CAP: usize> Sync for DisplayArray<'a, CAP>
impl<'a, const CAP: usize> Unpin for DisplayArray<'a, CAP>
impl<'a, const CAP: usize> UnwindSafe for DisplayArray<'a, CAP>
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