[][src]Struct bottom::data_conversion::ConvertedProcessData

pub struct ConvertedProcessData {
    pub pid: u32,
    pub name: String,
    pub command: String,
    pub cpu_percent_usage: f64,
    pub mem_percent_usage: f64,
    pub mem_usage_bytes: u64,
    pub mem_usage_str: (f64, String),
    pub group_pids: Vec<u32>,
    pub read_per_sec: String,
    pub write_per_sec: String,
    pub total_read: String,
    pub total_write: String,
    pub rps_f64: f64,
    pub wps_f64: f64,
    pub tr_f64: f64,
    pub tw_f64: f64,
    pub process_state: String,
}

Fields

pid: u32name: Stringcommand: Stringcpu_percent_usage: f64mem_percent_usage: f64mem_usage_bytes: u64mem_usage_str: (f64, String)group_pids: Vec<u32>read_per_sec: Stringwrite_per_sec: Stringtotal_read: Stringtotal_write: Stringrps_f64: f64wps_f64: f64tr_f64: f64tw_f64: f64process_state: String

Trait Implementations

impl Clone for ConvertedProcessData[src]

impl Debug for ConvertedProcessData[src]

impl Default for ConvertedProcessData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.