pub struct IoCounter {
    pub read_operation_count: u64,
    pub write_operation_count: u64,
    pub other_operation_count: u64,
    pub read_transfer_count: u64,
    pub write_transfer_count: u64,
    pub other_transfer_count: u64,
}
Expand description

the process’s IO counter struct

Fields

read_operation_count: u64write_operation_count: u64other_operation_count: u64read_transfer_count: u64write_transfer_count: u64other_transfer_count: u64

Implementations

get the process’s read operation count

get the process’s write operation count

get the process’s other operation count

get the process’s read transfer count

get the process’s write transfer count

get the process’s other transfer

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.