pub struct IndexEntry {
pub file_reference: FileReference,
pub file_name: Option<FileName>,
pub child_vcn: Option<u64>,
}Expand description
One directory index entry.
Fields§
§file_reference: FileReferenceFile reference of the entry’s target (0 for the terminal entry).
file_name: Option<FileName>The embedded $FILE_NAME, or None for the terminal entry.
child_vcn: Option<u64>VCN of the child index buffer, if this entry has a sub-node.
Trait Implementations§
Source§impl Clone for IndexEntry
impl Clone for IndexEntry
Source§fn clone(&self) -> IndexEntry
fn clone(&self) -> IndexEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexEntry
impl Debug for IndexEntry
impl Eq for IndexEntry
Source§impl PartialEq for IndexEntry
impl PartialEq for IndexEntry
Source§fn eq(&self, other: &IndexEntry) -> bool
fn eq(&self, other: &IndexEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IndexEntry
Auto Trait Implementations§
impl Freeze for IndexEntry
impl RefUnwindSafe for IndexEntry
impl Send for IndexEntry
impl Sync for IndexEntry
impl Unpin for IndexEntry
impl UnsafeUnpin for IndexEntry
impl UnwindSafe for IndexEntry
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