pub struct WalkEntry {
pub path: Vec<Vec<u8>>,
pub id: FileId,
pub meta: FsMeta,
}Expand description
One node found by walk: its path components (filesystem names are bytes,
not guaranteed UTF-8), its filesystem id, and its metadata.
Fields§
§path: Vec<Vec<u8>>Path components from the root, each a raw filesystem name.
id: FileIdThe node’s filesystem-specific id.
meta: FsMetaThe node’s forensic metadata.
Auto Trait Implementations§
impl Freeze for WalkEntry
impl RefUnwindSafe for WalkEntry
impl Send for WalkEntry
impl Sync for WalkEntry
impl Unpin for WalkEntry
impl UnsafeUnpin for WalkEntry
impl UnwindSafe for WalkEntry
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