Struct DISK_PERFORMANCE
#[repr(C)]pub struct DISK_PERFORMANCE {
pub BytesRead: i64,
pub BytesWritten: i64,
pub ReadTime: i64,
pub WriteTime: i64,
pub IdleTime: i64,
pub ReadCount: u32,
pub WriteCount: u32,
pub QueueDepth: u32,
pub SplitCount: u32,
pub QueryTime: i64,
pub StorageDeviceNumber: u32,
pub StorageManagerName: [u16; 8],
}
Fields§
§BytesRead: i64
§BytesWritten: i64
§ReadTime: i64
§WriteTime: i64
§IdleTime: i64
§ReadCount: u32
§WriteCount: u32
§QueueDepth: u32
§SplitCount: u32
§QueryTime: i64
§StorageDeviceNumber: u32
§StorageManagerName: [u16; 8]
Trait Implementations§
§impl Clone for DISK_PERFORMANCE
impl Clone for DISK_PERFORMANCE
§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