pub trait CpuStatsExt {
// Required method
fn soft_interrupts(&self) -> u64;
}Expand description
Linux-specific extension for CpuStats.
Required Methods§
Sourcefn soft_interrupts(&self) -> u64
fn soft_interrupts(&self) -> u64
Returns number of software interrupts since boot.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl CpuStatsExt for CpuStats
Available on Linux only.