[][src]Struct mft::attribute::header::MftAttributeHeader

pub struct MftAttributeHeader {
    pub type_code: MftAttributeType,
    pub record_length: u32,
    pub form_code: u8,
    pub residential_header: ResidentialHeader,
    pub name_size: u8,
    pub name_offset: Option<u16>,
    pub data_flags: AttributeDataFlags,
    pub instance: u16,
    pub name: String,
}

Represents the union defined in https://docs.microsoft.com/en-us/windows/desktop/devnotes/attribute-record-header

Fields

type_code: MftAttributeTyperecord_length: u32

The size of the attribute record, in bytes. This value reflects the required size for the record variant and is always rounded to the nearest quadword boundary.

form_code: u8

If the FormCode member is RESIDENT_FORM (0x00), the union is a Resident structure. If FormCode is NONRESIDENT_FORM (0x01), the union is a Nonresident structure.

residential_header: ResidentialHeadername_size: u8

The size of the optional attribute name, in characters, or 0 if there is no attribute name. The maximum attribute name length is 255 characters.

name_offset: Option<u16>

The offset of the attribute name from the start of the attribute record, in bytes. If the NameLength member is 0, this member is undefined.

data_flags: AttributeDataFlagsinstance: u16

The unique instance for this attribute in the file record.

name: String

Methods

impl MftAttributeHeader[src]

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

Tries to read an AttributeHeader from the stream. Will return None if the type code is $END.

Trait Implementations

impl Clone for MftAttributeHeader[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for MftAttributeHeader[src]

impl Serialize for MftAttributeHeader[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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