pub struct Walk {
pub file_len: u64,
pub header: Option<FileHeader>,
pub blocks: Vec<BlockView>,
pub diagnostics: Vec<Diagnostic>,
}Expand description
The result of walking a file.
Fields§
§file_len: u64§header: Option<FileHeader>§blocks: Vec<BlockView>§diagnostics: Vec<Diagnostic>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Walk
impl RefUnwindSafe for Walk
impl Send for Walk
impl Sync for Walk
impl Unpin for Walk
impl UnsafeUnpin for Walk
impl UnwindSafe for Walk
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