Enum slurm::JobState [] [src]

pub enum JobState {
    Pending,
    Running,
    Suspended,
    Complete,
    Cancelled,
    Failed,
    Timeout,
    NodeFail,
    Preempted,
    BootFail,
    Deadline,
    OutOfMemory,
}

States that a job or job step can be in.

Variants

The job has not yet started running.

The job is running.

The job has been suspended.

The job finished successfully.

The job was cancelled.

The job finished unsuccessfully.

The job was killed because it exceeded its time allocation.

The node running the job failed.

The job was killed by preemption.

The job failed because Slurm failed to launch it.

The job failed to start in time.

The job was killed because it exceeded its memory allocation.

Methods

impl JobState
[src]

[src]

Trait Implementations

impl Copy for JobState
[src]

impl Clone for JobState
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for JobState
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for JobState
[src]

impl Hash for JobState
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for JobState
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialEq for JobState
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl PartialOrd for JobState
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for JobState

impl Sync for JobState