pub struct Io {
pub nread: u64,
pub nwritten: u64,
pub reads: u32,
pub writes: u32,
pub wtime: i64,
pub wlentime: i64,
pub wlastupdate: i64,
pub rtime: i64,
pub rlentime: i64,
pub rlastupdate: i64,
pub wcnt: u32,
pub rcnt: u32,
}
Expand description
An I/O kernel statistic
Fields§
§nread: u64
§nwritten: u64
§reads: u32
§writes: u32
§wtime: i64
§wlentime: i64
§wlastupdate: i64
§rtime: i64
§rlentime: i64
§rlastupdate: i64
§wcnt: u32
§rcnt: u32
Trait Implementations§
impl Copy for Io
Auto Trait Implementations§
impl Freeze for Io
impl RefUnwindSafe for Io
impl Send for Io
impl Sync for Io
impl Unpin for Io
impl UnwindSafe for Io
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