#[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 copy 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 moreimpl 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