[][src]Struct winapi::um::winioctl::DISK_PERFORMANCE

#[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_INTEGERBytesWritten: LARGE_INTEGERReadTime: LARGE_INTEGERWriteTime: LARGE_INTEGERIdleTime: LARGE_INTEGERReadCount: DWORDWriteCount: DWORDQueueDepth: DWORDSplitCount: DWORDQueryTime: LARGE_INTEGERStorageDeviceNumber: DWORDStorageManagerName: [WCHAR; 8]

Trait Implementations

impl Copy for DISK_PERFORMANCE[src]

impl Clone for DISK_PERFORMANCE[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for DISK_PERFORMANCE[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]