pub struct IOStats {
pub read_count: u64,
pub write_count: u64,
pub read_bytes: u64,
pub write_bytes: u64,
}
Expand description
A struct represents io status.
Fields§
§read_count: u64
(linux & windows) the number of read operations performed (cumulative)
write_count: u64
(linux & windows) the number of write operations performed (cumulative)
read_bytes: u64
the number of bytes read (cumulative).
write_bytes: u64
the number of bytes written (cumulative)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IOStats
impl RefUnwindSafe for IOStats
impl Send for IOStats
impl Sync for IOStats
impl Unpin for IOStats
impl UnwindSafe for IOStats
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