pub struct ProcStat {
pub cpu: CPU,
pub cpus: HashMap<usize, CPU>,
pub interrupts: Interrupts,
pub contexts: Contexts,
pub boot_time: BootTime,
pub processes: Processes,
pub soft_irq: SoftIrq,
}Fields§
§cpu: CPU§cpus: HashMap<usize, CPU>§interrupts: Interrupts§contexts: Contexts§boot_time: BootTime§processes: Processes§soft_irq: SoftIrqImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcStat
impl RefUnwindSafe for ProcStat
impl Send for ProcStat
impl Sync for ProcStat
impl Unpin for ProcStat
impl UnwindSafe for ProcStat
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