pub struct IndexRoot {
pub indexed_type: u32,
pub is_large: bool,
pub entries: Vec<IndexEntry>,
}Expand description
A parsed $INDEX_ROOT.
Fields§
§indexed_type: u32The attribute type this index is keyed on (usually $FILE_NAME = 0x30).
is_large: booltrue if the directory also has an $INDEX_ALLOCATION.
entries: Vec<IndexEntry>The entries held directly in the root node.
Implementations§
Trait Implementations§
impl Eq for IndexRoot
impl StructuralPartialEq for IndexRoot
Auto Trait Implementations§
impl Freeze for IndexRoot
impl RefUnwindSafe for IndexRoot
impl Send for IndexRoot
impl Sync for IndexRoot
impl Unpin for IndexRoot
impl UnsafeUnpin for IndexRoot
impl UnwindSafe for IndexRoot
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