Enum sysinfo::ProcessStatus[][src]

pub enum ProcessStatus {
    Run,
}

Enum describing the different status of a process.

Variants

Currently runnable.

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 Copy for ProcessStatus
[src]

impl Debug for ProcessStatus
[src]

Formats the value using the given formatter. Read more

impl Display for ProcessStatus
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations