pub struct PackIndex {
pub idx_path: PathBuf,
pub pack_path: PathBuf,
pub entries: Vec<PackIndexEntry>,
}Expand description
Parsed data from a .idx file (version 2).
Fields§
§idx_path: PathBufAbsolute path to the .idx file.
pack_path: PathBufAbsolute path to the .pack file.
entries: Vec<PackIndexEntry>Parsed entries in index order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackIndex
impl RefUnwindSafe for PackIndex
impl Send for PackIndex
impl Sync for PackIndex
impl Unpin for PackIndex
impl UnsafeUnpin for PackIndex
impl UnwindSafe for PackIndex
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