pub struct IoBaseline {
pub disk_read_bytes: u64,
pub disk_write_bytes: u64,
pub syscall_read_bytes: Option<u64>,
pub syscall_write_bytes: Option<u64>,
pub page_faults_cached: Option<u64>,
pub page_faults_disk: Option<u64>,
pub sys_net_rx_bytes: u64,
pub sys_net_tx_bytes: u64,
}Fields§
§disk_read_bytes: u64§disk_write_bytes: u64§syscall_read_bytes: Option<u64>§syscall_write_bytes: Option<u64>§page_faults_cached: Option<u64>§page_faults_disk: Option<u64>§sys_net_rx_bytes: u64§sys_net_tx_bytes: u64Trait Implementations§
Source§impl Clone for IoBaseline
impl Clone for IoBaseline
Source§fn clone(&self) -> IoBaseline
fn clone(&self) -> IoBaseline
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IoBaseline
impl RefUnwindSafe for IoBaseline
impl Send for IoBaseline
impl Sync for IoBaseline
impl Unpin for IoBaseline
impl UnsafeUnpin for IoBaseline
impl UnwindSafe for IoBaseline
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