pub struct PrefetchFile {
pub version: u32,
pub name: String,
pub metrics: Vec<Metric>,
pub last_run_times: Vec<Filetime>,
pub run_count: u32,
pub volume: Vec<VolumeInformation>,
}Fields§
§version: u32Prefetch file version
name: StringExecutable name
metrics: Vec<Metric>List of DLLs/EXEs loaded by the executable
last_run_times: Vec<Filetime>Last execution times (max 8)
run_count: u32Number of times executed
volume: Vec<VolumeInformation>Information about the disks and other volumes
Implementations§
Trait Implementations§
Source§impl Clone for PrefetchFile
impl Clone for PrefetchFile
Source§fn clone(&self) -> PrefetchFile
fn clone(&self) -> PrefetchFile
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrefetchFile
impl Debug for PrefetchFile
Source§impl Default for PrefetchFile
impl Default for PrefetchFile
Source§fn default() -> PrefetchFile
fn default() -> PrefetchFile
Returns the “default value” for a type. Read more
Source§impl<'a> IntoActivity<'a> for &'a PrefetchFile
impl<'a> IntoActivity<'a> for &'a PrefetchFile
Source§impl<'a> IntoActivity<'a> for PrefetchFile
impl<'a> IntoActivity<'a> for PrefetchFile
Source§impl<'a> IntoTimeline<'a> for &'a PrefetchFile
impl<'a> IntoTimeline<'a> for &'a PrefetchFile
Source§impl<'a> IntoTimeline<'a> for PrefetchFile
impl<'a> IntoTimeline<'a> for PrefetchFile
Auto Trait Implementations§
impl Freeze for PrefetchFile
impl RefUnwindSafe for PrefetchFile
impl Send for PrefetchFile
impl Sync for PrefetchFile
impl Unpin for PrefetchFile
impl UnwindSafe for PrefetchFile
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