pub struct HexDump {
pub offset: u64,
pub length: u64,
pub hex: String,
}Expand description
Result of a hex dump operation containing the formatted hex output.
Fields§
§offset: u64Starting offset of the dumped data
length: u64Actual number of bytes that were read and dumped
hex: StringFormatted hex dump string with addresses and ASCII representation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HexDump
impl RefUnwindSafe for HexDump
impl Send for HexDump
impl Sync for HexDump
impl Unpin for HexDump
impl UnwindSafe for HexDump
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