[][src]Struct mft::csv::FlatMftEntryWithName

pub struct FlatMftEntryWithName {
    pub signature: String,
    pub entry_id: u64,
    pub sequence: u16,
    pub base_entry_id: u64,
    pub base_entry_sequence: u16,
    pub hard_link_count: u16,
    pub flags: EntryFlags,
    pub used_entry_size: u32,
    pub total_entry_size: u32,
    pub is_a_directory: bool,
    pub has_alternate_data_streams: bool,
    pub standard_info_flags: Option<FileAttributeFlags>,
    pub standard_info_last_modified: Option<DateTime<Utc>>,
    pub standard_info_last_access: Option<DateTime<Utc>>,
    pub standard_info_created: Option<DateTime<Utc>>,
    pub file_name_flags: Option<FileAttributeFlags>,
    pub file_name_last_modified: Option<DateTime<Utc>>,
    pub file_name_last_access: Option<DateTime<Utc>>,
    pub file_name_created: Option<DateTime<Utc>>,
    pub full_path: PathBuf,
}

Used for CSV output

Fields

signature: Stringentry_id: u64sequence: u16base_entry_id: u64base_entry_sequence: u16hard_link_count: u16flags: EntryFlagsused_entry_size: u32

The size of the file, in bytes.

total_entry_size: u32is_a_directory: bool

Indicates whether the record is a directory.

has_alternate_data_streams: bool

Indicates whether the record has alternate data streams.

standard_info_flags: Option<FileAttributeFlags>

All of these fields are present for entries that have an 0x10 attribute.

standard_info_last_modified: Option<DateTime<Utc>>standard_info_last_access: Option<DateTime<Utc>>standard_info_created: Option<DateTime<Utc>>file_name_flags: Option<FileAttributeFlags>

All of these fields are present for entries that have an 0x30 attribute.

file_name_last_modified: Option<DateTime<Utc>>file_name_last_access: Option<DateTime<Utc>>file_name_created: Option<DateTime<Utc>>full_path: PathBuf

Methods

impl FlatMftEntryWithName[src]

pub fn from_entry(
    entry: &MftEntry,
    parser: &mut MftParser<impl ReadSeek>
) -> FlatMftEntryWithName
[src]

Trait Implementations

impl Serialize for FlatMftEntryWithName[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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]