#[repr(C)]pub struct IO_COUNTERS {
    pub ReadOperationCount: ULONGLONG,
    pub WriteOperationCount: ULONGLONG,
    pub OtherOperationCount: ULONGLONG,
    pub ReadTransferCount: ULONGLONG,
    pub WriteTransferCount: ULONGLONG,
    pub OtherTransferCount: ULONGLONG,
}Fields§
§ReadOperationCount: ULONGLONG§WriteOperationCount: ULONGLONG§OtherOperationCount: ULONGLONG§ReadTransferCount: ULONGLONG§WriteTransferCount: ULONGLONG§OtherTransferCount: ULONGLONGTrait Implementations§
Source§impl Clone for IO_COUNTERS
 
impl Clone for IO_COUNTERS
Source§fn clone(&self) -> IO_COUNTERS
 
fn clone(&self) -> IO_COUNTERS
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 IO_COUNTERS
Auto Trait Implementations§
impl Freeze for IO_COUNTERS
impl RefUnwindSafe for IO_COUNTERS
impl Send for IO_COUNTERS
impl Sync for IO_COUNTERS
impl Unpin for IO_COUNTERS
impl UnwindSafe for IO_COUNTERS
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