pub struct IoPressure {
pub some: PressureRecord,
pub full: PressureRecord,
}Expand description
IO pressure information
Fields§
§some: PressureRecordThis record indicates the share of time in which at least some tasks are stalled.
full: PressureRecordThis record indicates this share of time in which all non-idle tasks are stalled simultaneously.
Trait Implementations§
Source§impl Clone for IoPressure
impl Clone for IoPressure
Source§fn clone(&self) -> IoPressure
fn clone(&self) -> IoPressure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IoPressure
impl Debug for IoPressure
Source§impl<'de> Deserialize<'de> for IoPressure
impl<'de> Deserialize<'de> for IoPressure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromBufRead for IoPressure
impl FromBufRead for IoPressure
fn from_buf_read<R: BufRead>(r: R) -> ProcResult<Self>
Auto Trait Implementations§
impl Freeze for IoPressure
impl RefUnwindSafe for IoPressure
impl Send for IoPressure
impl Sync for IoPressure
impl Unpin for IoPressure
impl UnsafeUnpin for IoPressure
impl UnwindSafe for IoPressure
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