Struct below_model::system::ProcStatModel
source · [−]pub struct ProcStatModel {
pub total_interrupt_ct: Option<u64>,
pub context_switches: Option<u64>,
pub boot_time_epoch_secs: Option<u64>,
pub total_processes: Option<u64>,
pub running_processes: Option<u32>,
pub blocked_processes: Option<u32>,
}
Fields
total_interrupt_ct: Option<u64>
context_switches: Option<u64>
boot_time_epoch_secs: Option<u64>
total_processes: Option<u64>
running_processes: Option<u32>
blocked_processes: Option<u32>
Implementations
sourceimpl ProcStatModel
impl ProcStatModel
Trait Implementations
sourceimpl Clone for ProcStatModel
impl Clone for ProcStatModel
sourcefn clone(&self) -> ProcStatModel
fn clone(&self) -> ProcStatModel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ProcStatModel
impl Debug for ProcStatModel
sourceimpl Default for ProcStatModel
impl Default for ProcStatModel
sourcefn default() -> ProcStatModel
fn default() -> ProcStatModel
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ProcStatModel
impl<'de> Deserialize<'de> for ProcStatModel
sourcefn 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
sourceimpl PartialEq<ProcStatModel> for ProcStatModel
impl PartialEq<ProcStatModel> for ProcStatModel
sourcefn eq(&self, other: &ProcStatModel) -> bool
fn eq(&self, other: &ProcStatModel) -> bool
sourceimpl Queriable for ProcStatModel
impl Queriable for ProcStatModel
sourceimpl Serialize for ProcStatModel
impl Serialize for ProcStatModel
impl StructuralPartialEq for ProcStatModel
Auto Trait Implementations
impl RefUnwindSafe for ProcStatModel
impl Send for ProcStatModel
impl Sync for ProcStatModel
impl Unpin for ProcStatModel
impl UnwindSafe for ProcStatModel
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