#[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§
Source§impl Clone for DISK_PERFORMANCE
impl Clone for DISK_PERFORMANCE
Source§fn clone(&self) -> DISK_PERFORMANCE
fn clone(&self) -> DISK_PERFORMANCE
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 Default for DISK_PERFORMANCE
impl Default for DISK_PERFORMANCE
Source§fn default() -> DISK_PERFORMANCE
fn default() -> DISK_PERFORMANCE
Returns the “default value” for a type. Read more
impl Copy for DISK_PERFORMANCE
Auto Trait Implementations§
impl Freeze for DISK_PERFORMANCE
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§
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