Enum sysinfo::ProcessStatus [−][src]
pub enum ProcessStatus {
Idle,
Run,
Sleep,
Stop,
Zombie,
Tracing,
Dead,
Wakekill,
Waking,
Parked,
Unknown(u32),
}Expand description
Enum describing the different status of a process.
Variants
Waiting in uninterruptible disk sleep.
Running.
Sleeping in an interruptible waiting.
Stopped (on a signal) or (before Linux 2.6.33) trace stopped.
Zombie.
Tracing stop (Linux 2.6.33 onward).
Dead.
Wakekill (Linux 2.6.33 to 3.13 only).
Waking (Linux 2.6.33 to 3.13 only).
Parked (Linux 3.9 to 3.13 only).
Unknown(u32)Unknown.
Implementations
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for ProcessStatusimpl Send for ProcessStatusimpl Sync for ProcessStatusimpl Unpin for ProcessStatusimpl UnwindSafe for ProcessStatusBlanket Implementations
Mutably borrows from an owned value. Read more