#[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: ULONGLONG
Trait Implementations
sourceimpl Clone for IO_COUNTERS
impl Clone for IO_COUNTERS
sourcefn clone(&self) -> IO_COUNTERS
fn clone(&self) -> IO_COUNTERS
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for IO_COUNTERS
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more