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

pub struct MftEntry {
    pub header: EntryHeader,
    pub attributes: BTreeMap<String, Vec<MftAttribute>>,
}

Fields

header: EntryHeaderattributes: BTreeMap<String, Vec<MftAttribute>>

Methods

impl MftEntry[src]

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

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

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

pub fn get_pathmap(&self) -> Option<PathMapping>[src]

pub fn set_attribute(&mut self, attribute: MftAttribute)[src]

pub fn set_full_names(&mut self, mft_handler: &mut MftHandler)[src]

Trait Implementations

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

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> 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]