#[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_INTEGER
BytesWritten: LARGE_INTEGER
ReadTime: LARGE_INTEGER
WriteTime: LARGE_INTEGER
IdleTime: LARGE_INTEGER
ReadCount: DWORD
WriteCount: DWORD
QueueDepth: DWORD
SplitCount: DWORD
QueryTime: LARGE_INTEGER
StorageDeviceNumber: DWORD
StorageManagerName: [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