pub struct Metric {
pub file: String,
pub flags: PrefetchFlag,
pub blocks_to_prefetch: u32,
pub traces: Vec<Trace>,
}Expand description
Files loaded by the executable
Fields§
§file: StringFull path to the dependency. Ex: File=\VOLUME{01d962d37536cd21-a2691d2c}\WINDOWS\SYSTEM32\NTDLL.DLL
flags: PrefetchFlagDefault flags for loading blocks: executable, resource or non-prefetchable.
blocks_to_prefetch: u32Number of blocks to be prefetched
traces: Vec<Trace>Traces for this dependency
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Metric
impl RefUnwindSafe for Metric
impl Send for Metric
impl Sync for Metric
impl Unpin for Metric
impl UnwindSafe for Metric
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