pub struct AllStats {
pub cpu_time: CpuTime,
pub memory_rss: u64,
pub disk_io: DiskIo,
}Expand description
Combined stats from reading multiple /proc files.
Fields§
§cpu_time: CpuTime§memory_rss: u64§disk_io: DiskIoTrait Implementations§
Auto Trait Implementations§
impl Freeze for AllStats
impl RefUnwindSafe for AllStats
impl Send for AllStats
impl Sync for AllStats
impl Unpin for AllStats
impl UnwindSafe for AllStats
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