#[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§
Source§impl Abi for DISK_PERFORMANCE
impl Abi for DISK_PERFORMANCE
Source§type Abi = DISK_PERFORMANCE
type Abi = DISK_PERFORMANCE
The abi representation of the implementing type. Read more
type DefaultType = DISK_PERFORMANCE
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType to Result<T>.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
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 (const: unstable) · 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
Source§impl Debug for DISK_PERFORMANCE
impl Debug for DISK_PERFORMANCE
Source§impl Default for DISK_PERFORMANCE
impl Default for DISK_PERFORMANCE
impl Eq 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 UnsafeUnpin 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