use crate::units::Time;
#[heim_derive::os_ext_for(crate::CpuTime, cfg(target_os = "linux"))]
pub trait CpuTimeExt {
fn nice(&self) -> Time;
fn io_wait(&self) -> Time;
fn irq(&self) -> Time;
fn soft_irq(&self) -> Time;
fn steal(&self) -> Option<Time>;
fn guest(&self) -> Option<Time>;
fn guest_nice(&self) -> Option<Time>;
}