pub struct PathTableAudit {
pub path_table_lbas: Vec<u32>,
pub tree_lbas: Vec<u32>,
pub phantom_lbas: Vec<u32>,
pub ghost_lbas: Vec<u32>,
}Expand description
Result of comparing the L-path table against the directory tree.
Fields§
§path_table_lbas: Vec<u32>§tree_lbas: Vec<u32>§phantom_lbas: Vec<u32>Directories in the path table but not reachable from the tree.
ghost_lbas: Vec<u32>Directories reachable from the tree but absent from the path table.
Trait Implementations§
Source§impl Clone for PathTableAudit
impl Clone for PathTableAudit
Source§fn clone(&self) -> PathTableAudit
fn clone(&self) -> PathTableAudit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PathTableAudit
impl RefUnwindSafe for PathTableAudit
impl Send for PathTableAudit
impl Sync for PathTableAudit
impl Unpin for PathTableAudit
impl UnsafeUnpin for PathTableAudit
impl UnwindSafe for PathTableAudit
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