pub struct IoService {
pub major: i16,
pub minor: i16,
pub read: u64,
pub write: u64,
pub sync: u64,
pub async: u64,
pub discard: u64,
pub total: u64,
}Expand description
Per-device activity from the control group.
Fields§
§major: i16The major number of the device.
minor: i16The minor number of the device.
read: u64How many items were read from the device.
write: u64How many items were written to the device.
sync: u64How many items were synchronously transferred.
async: u64How many items were asynchronously transferred.
discard: u64How many items were discarded.
total: u64Total number of items transferred.
Trait Implementations§
impl Eq for IoService
impl StructuralPartialEq for IoService
Auto Trait Implementations§
impl Freeze for IoService
impl RefUnwindSafe for IoService
impl Send for IoService
impl Sync for IoService
impl Unpin for IoService
impl UnwindSafe for IoService
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