Struct linux_taskstats::Delays
source · pub struct Delays {
pub cpu: DelayStat,
pub blkio: DelayStat,
pub swapin: DelayStat,
pub freepages: DelayStat,
}
Expand description
Statistics related to scheduling delay (delay accounting)
Fields
cpu: DelayStat
Delay waiting for cpu, while runnable
blkio: DelayStat
Delay waiting for synchronous block I/O to complete
swapin: DelayStat
Delay waiting for page fault I/O (swap in only)
freepages: DelayStat
Delay waiting for memory reclaim
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Delays
impl Send for Delays
impl Sync for Delays
impl Unpin for Delays
impl UnwindSafe for Delays
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more