pub enum Representation {
U8,
U32,
U64,
}Expand description
Representation of memory for hexdump.
Variants§
U8
Display memory as 8-bit values.
U32
Display memory as 32-bit values.
U64
Display memory as 64-bit values.
Auto Trait Implementations§
impl Freeze for Representation
impl RefUnwindSafe for Representation
impl Send for Representation
impl Sync for Representation
impl Unpin for Representation
impl UnwindSafe for Representation
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