Enum sysinfo::ProcessStatus
source · pub enum ProcessStatus {
Show 13 variants
Idle,
Run,
Sleep,
Stop,
Zombie,
Tracing,
Dead,
Wakekill,
Waking,
Parked,
LockBlocked,
UninterruptibleDiskSleep,
Unknown(u32),
}
Expand description
Enum describing the different status of a process.
Variants§
Idle
Run
Running.
Sleep
§Linux
Sleeping in an interruptible waiting.
§macOS/FreeBSD
Sleeping on an address.
§Other OS
Not available.
Stop
§Linux
Stopped (on a signal) or (before Linux 2.6.33) trace stopped.
§macOS/FreeBSD
Process debugging or suspension.
§Other OS
Not available.
Zombie
§Linux/FreeBSD/macOS
Zombie process. Terminated but not reaped by its parent.
§Other OS
Not available.
Tracing
§Linux
Tracing stop (Linux 2.6.33 onward). Stopped by debugger during the tracing.
§Other OS
Not available.
Dead
§Linux
Dead/uninterruptible sleep (usually IO).
§FreeBSD
A process should never end up in this state.
§Other OS
Not available.
Wakekill
Waking
Parked
LockBlocked
UninterruptibleDiskSleep
Unknown(u32)
Unknown.
Trait Implementations§
source§impl Clone for ProcessStatus
impl Clone for ProcessStatus
source§fn clone(&self) -> ProcessStatus
fn clone(&self) -> ProcessStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ProcessStatus
impl Debug for ProcessStatus
source§impl Display for ProcessStatus
impl Display for ProcessStatus
source§impl PartialEq for ProcessStatus
impl PartialEq for ProcessStatus
source§fn eq(&self, other: &ProcessStatus) -> bool
fn eq(&self, other: &ProcessStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ProcessStatus
impl Eq for ProcessStatus
impl StructuralPartialEq for ProcessStatus
Auto Trait Implementations§
impl Freeze for ProcessStatus
impl RefUnwindSafe for ProcessStatus
impl Send for ProcessStatus
impl Sync for ProcessStatus
impl Unpin for ProcessStatus
impl UnwindSafe for ProcessStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more