pub struct ExportTable<'archive> { /* private fields */ }
Expand description
A mapping from inode numbers to inode references.
A squashfs archive can optionally contain an export table, which maps inode numbers to inode references.
Implementations§
Source§impl<'archive> ExportTable<'archive>
impl<'archive> ExportTable<'archive>
Sourcepub fn resolve_inode(&self, inode: Inode) -> Result<InodeRef>
pub fn resolve_inode(&self, inode: Inode) -> Result<InodeRef>
Retrieves an element from the export table.
Auto Trait Implementations§
impl<'archive> Freeze for ExportTable<'archive>
impl<'archive> RefUnwindSafe for ExportTable<'archive>
impl<'archive> Send for ExportTable<'archive>
impl<'archive> Sync for ExportTable<'archive>
impl<'archive> Unpin for ExportTable<'archive>
impl<'archive> UnwindSafe for ExportTable<'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