[][src]Struct mft::attribute::x90::IndexRootAttr

pub struct IndexRootAttr {
    pub attribute_type: u32,
    pub collation_rule: u32,
    pub index_entry_size: u32,
    pub index_entry_number_of_cluster_blocks: u32,
}

$IndexRoot Attribute

Fields

attribute_type: u32

Unique Id assigned to file

collation_rule: u32

Collation rule used to sort the index entries. If type is $FILENAME, this must be COLLATION_FILENAME

index_entry_size: u32

The index entry size

index_entry_number_of_cluster_blocks: u32

The index entry number of cluster blocks

Methods

impl IndexRootAttr[src]

pub fn from_stream<S: ReadSeek>(stream: &mut S) -> Result<IndexRootAttr>[src]

Data size should be either 16 or 64

Trait Implementations

impl Clone for IndexRootAttr[src]

impl Debug for IndexRootAttr[src]

impl Serialize for IndexRootAttr[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,