pub struct ChildIoBaseline {
pub pid: usize,
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§
§pid: usize§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 ChildIoBaseline
impl Clone for ChildIoBaseline
Source§fn clone(&self) -> ChildIoBaseline
fn clone(&self) -> ChildIoBaseline
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 ChildIoBaseline
impl RefUnwindSafe for ChildIoBaseline
impl Send for ChildIoBaseline
impl Sync for ChildIoBaseline
impl Unpin for ChildIoBaseline
impl UnsafeUnpin for ChildIoBaseline
impl UnwindSafe for ChildIoBaseline
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