pub struct VolumeInfo {
pub device_path: String,
pub serial: u32,
pub creation_time: i64,
}Expand description
A volume referenced by a prefetch file’s VolumeInformation block.
Fields§
§device_path: StringDevice path, e.g. \VOLUME{01d68d85e0da1e22-b0e0e8ff}.
serial: u32Volume serial number (the 32-bit value Windows formats as 8 hex digits).
creation_time: i64Volume creation time, as a raw Windows FILETIME (100 ns ticks since 1601).
Trait Implementations§
Source§impl Clone for VolumeInfo
impl Clone for VolumeInfo
Source§fn clone(&self) -> VolumeInfo
fn clone(&self) -> VolumeInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VolumeInfo
impl Debug for VolumeInfo
impl Eq for VolumeInfo
Source§impl PartialEq for VolumeInfo
impl PartialEq for VolumeInfo
Source§fn eq(&self, other: &VolumeInfo) -> bool
fn eq(&self, other: &VolumeInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VolumeInfo
Auto Trait Implementations§
impl Freeze for VolumeInfo
impl RefUnwindSafe for VolumeInfo
impl Send for VolumeInfo
impl Sync for VolumeInfo
impl Unpin for VolumeInfo
impl UnsafeUnpin for VolumeInfo
impl UnwindSafe for VolumeInfo
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