pub struct InodeMap<'archive> { /* private fields */ }
Expand description
A map of inodes to inode references.
This is used to look up inode references by inode number.
Note that this may or may not be a complete map of all inodes in the archive: if an export table is present, this will contain all inodes, but if not, this will only contain inodes that have been visited.
Implementations§
Auto Trait Implementations§
impl<'archive> Freeze for InodeMap<'archive>
impl<'archive> RefUnwindSafe for InodeMap<'archive>
impl<'archive> Send for InodeMap<'archive>
impl<'archive> Sync for InodeMap<'archive>
impl<'archive> Unpin for InodeMap<'archive>
impl<'archive> UnwindSafe for InodeMap<'archive>
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