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: usizeVirtual Set Size (VIRT)
rss: usizeResident Set Size (RES)
Resident Shared Size (SHR)
rss_anon: usizeResident 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]
fn hash<H: Hasher>(&self, state: &mut H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Process> for Process[src]
fn eq(&self, other: &Process) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
pub fn ne(&self, other: &Rhs) -> boolimpl 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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,