pub fn load_inode<R: Read + Seek>(
reader: &mut R,
volume: &ApfsVolume,
oid: u64,
block_size: usize,
) -> Result<Inode>Expand description
Load the inode (INODE record) for oid from the volume fs-tree.
§Errors
crate::ApfsError::OmapUnresolved if the inode record is not present (a
loud per-item miss), plus the structural errors of list_dir.