Enum sysinfo::ProcessStatus [] [src]

pub enum ProcessStatus {
    Idle,
    Run,
    Sleep,
    Stop,
    Zombie,
    Unknown(u32),
}

Enum describing the different status of a process.

Variants

Process being created by fork.

Currently runnable.

Sleeping on an address.

Process debugging or suspension.

Awaiting collection by parent.

Unknown.

Methods

impl ProcessStatus
[src]

Used to display ProcessStatus.

Trait Implementations

impl Clone for ProcessStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProcessStatus
[src]

Formats the value using the given formatter.

impl From<u32> for ProcessStatus
[src]

Performs the conversion.

impl Display for ProcessStatus
[src]

Formats the value using the given formatter. Read more