[][src]Struct mft::entry::MftEntry

pub struct MftEntry {
    pub header: EntryHeader,
    pub data: Vec<u8>,
}

Fields

header: EntryHeaderdata: Vec<u8>

Methods

impl MftEntry[src]

pub fn from_buffer(buffer: Vec<u8>, entry_number: u64) -> Result<MftEntry>[src]

Initializes an MFT Entry from a buffer. Since the parser is the entity responsible for knowing the entry size, we take ownership of the buffer instead of trying to read it from stream.

pub fn find_best_name_attribute(&self) -> Option<FileNameAttr>[src]

Retrieves most human-readable representation of a file path entry. Will prefer Win32 file name attributes, and fallback to Dos paths.

pub fn is_allocated(&self) -> bool[src]

pub fn is_dir(&self) -> bool[src]

pub fn iter_attributes(&self) -> impl Iterator<Item = Result<MftAttribute>> + '_[src]

Returns an iterator over all the attributes of the entry.

pub fn iter_attributes_matching(
    &self,
    types: Option<Vec<MftAttributeType>>
) -> impl Iterator<Item = Result<MftAttribute>> + '_
[src]

Returns an iterator over the attributes in the list given in types, skips other attributes.

Trait Implementations

impl Clone for MftEntry[src]

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

Performs copy-assignment from source. Read more

impl Debug for MftEntry[src]

impl Serialize for MftEntry[src]

Auto Trait Implementations

impl Send for MftEntry

impl Sync for MftEntry

Blanket Implementations

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

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

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