Struct cgroups_rs::blkio::IoService[][src]

pub struct IoService {
    pub major: i16,
    pub minor: i16,
    pub read: u64,
    pub write: u64,
    pub sync: u64,
    pub async: u64,
    pub total: u64,
}

Per-device activity from the control group.

Fields

major: i16

The major number of the device.

minor: i16

The minor number of the device.

read: u64

How many items were read from the device.

write: u64

How many items were written to the device.

sync: u64

How many items were synchronously transferred.

async: u64

How many items were asynchronously transferred.

total: u64

Total number of items transferred.

Trait Implementations

impl Debug for IoService[src]

impl Eq for IoService[src]

impl PartialEq<IoService> for IoService[src]

impl StructuralEq for IoService[src]

impl StructuralPartialEq for IoService[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.