Struct cgroups_rs::blkio::IoService
source · pub struct IoService {
pub major: i16,
pub minor: i16,
pub read: u64,
pub write: u64,
pub sync: u64,
pub async: 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.
total: u64Total number of items transferred.