pub(crate) struct Row {
pub(crate) offset: usize,
pub(crate) bytes: Vec<u8>,
pub(crate) field: String,
}Expand description
A single row in the output hex table.
Fields§
§offset: usizeByte offset of the first byte of this field within the file.
bytes: Vec<u8>Raw bytes of this field (empty for annotation-only rows).
field: StringHuman-readable field description.
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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