#[repr(C)]pub struct DISK_PERFORMANCE {
pub BytesRead: LARGE_INTEGER,
pub BytesWritten: LARGE_INTEGER,
pub ReadTime: LARGE_INTEGER,
pub WriteTime: LARGE_INTEGER,
pub IdleTime: LARGE_INTEGER,
pub ReadCount: DWORD,
pub WriteCount: DWORD,
pub QueueDepth: DWORD,
pub SplitCount: DWORD,
pub QueryTime: LARGE_INTEGER,
pub StorageDeviceNumber: DWORD,
pub StorageManagerName: [WCHAR; 8],
}Fields
BytesRead: LARGE_INTEGERBytesWritten: LARGE_INTEGERReadTime: LARGE_INTEGERWriteTime: LARGE_INTEGERIdleTime: LARGE_INTEGERReadCount: DWORDWriteCount: DWORDQueueDepth: DWORDSplitCount: DWORDQueryTime: LARGE_INTEGERStorageDeviceNumber: DWORDStorageManagerName: [WCHAR; 8]Trait Implementations
sourceimpl Clone for DISK_PERFORMANCE
impl Clone for DISK_PERFORMANCE
sourcefn clone(&self) -> DISK_PERFORMANCE
fn clone(&self) -> DISK_PERFORMANCE
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for DISK_PERFORMANCE
Auto Trait Implementations
impl RefUnwindSafe for DISK_PERFORMANCE
impl Send for DISK_PERFORMANCE
impl Sync for DISK_PERFORMANCE
impl Unpin for DISK_PERFORMANCE
impl UnwindSafe for DISK_PERFORMANCE
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more