Struct mprober_lib::process::Process[][src]

pub struct Process {
Show fields pub pid: u32, pub effective_uid: u32, pub effective_gid: u32, pub state: ProcessState, pub ppid: u32, pub program: String, pub cmdline: String, pub tty: Option<String>, pub priority: i8, pub real_time_priority: Option<u8>, pub nice: i8, pub threads: usize, pub vsz: usize, pub rss: usize, pub rss_shared: usize, pub rss_anon: usize, pub start_time: DateTime<Utc>,
}

Fields

pid: u32effective_uid: u32effective_gid: u32state: ProcessStateppid: u32program: Stringcmdline: Stringtty: Option<String>priority: i8real_time_priority: Option<u8>nice: i8threads: usizevsz: usize

Virtual Set Size (VIRT)

rss: usize

Resident Set Size (RES)

rss_shared: usize

Resident Shared Size (SHR)

rss_anon: usize

Resident Anonymous Memory

start_time: DateTime<Utc>

Trait Implementations

impl Clone for Process[src]

impl Debug for Process[src]

impl Eq for Process[src]

impl Hash for Process[src]

impl PartialEq<Process> for Process[src]

impl StructuralEq for Process[src]

Auto Trait Implementations

impl RefUnwindSafe for Process

impl Send for Process

impl Sync for Process

impl Unpin for Process

impl UnwindSafe for Process

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.