Enum sysinfo::ProcessStatus
[−]
[src]
pub enum ProcessStatus {
Idle,
Run,
Sleep,
Stop,
Zombie,
Unknown(u32),
}Enum describing the different status of a process.
Variants
IdleProcess being created by fork.
RunCurrently runnable.
SleepSleeping on an address.
StopProcess debugging or suspension.
ZombieAwaiting collection by parent.
Unknown(u32)Unknown.
Methods
impl ProcessStatus[src]
Trait Implementations
impl Clone for ProcessStatus[src]
fn clone(&self) -> ProcessStatus[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ProcessStatus[src]
impl From<u32> for ProcessStatus[src]
fn from(status: u32) -> ProcessStatus[src]
Performs the conversion.