Enum brokkr::JobState[][src]

pub enum JobState {
    Queued,
    Started,
    Success,
    Failed,
    Panicked,
    TimedOut,
}

The different states that a Job can be in.

Variants

The job was created and in the queue.

The job has been picked by a Worker which is waiting for it to finish.

The job has finished successfully.

The job failed in an expected way.

The job panicked.

The job timed out.

Trait Implementations

impl Debug for JobState
[src]

Formats the value using the given formatter. Read more

impl Copy for JobState
[src]

impl Clone for JobState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for JobState

impl Sync for JobState