pub struct MetricEntry { /* private fields */ }
Expand description
A file metric entry.
This is supposed to give some information about a file which is load by the exe.
Implementations§
Source§impl MetricEntry
impl MetricEntry
Sourcepub fn start_time(&self) -> Option<u32>
pub fn start_time(&self) -> Option<u32>
Returns the start time (when the file is loaded).
Sourcepub fn average_duration(&self) -> Option<u32>
pub fn average_duration(&self) -> Option<u32>
Returns the average duration.
Sourcepub fn mft_entry_index(&self) -> Option<u64>
pub fn mft_entry_index(&self) -> Option<u64>
Returns the NTFS MFT entry index, if available.
Sourcepub fn sequence_number(&self) -> Option<u16>
pub fn sequence_number(&self) -> Option<u16>
Returns the NTFS sequence number, if available.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MetricEntry
impl RefUnwindSafe for MetricEntry
impl Send for MetricEntry
impl Sync for MetricEntry
impl Unpin for MetricEntry
impl UnwindSafe for MetricEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more