Enum buildkite_jobify::monitor::JobStates[][src]

pub enum JobStates {
    Pending,
    Waiting,
    WaitingFailed,
    Blocked,
    BlockedFailed,
    Unblocked,
    UnblockedFailed,
    Limited,
    Scheduled,
    Assigned,
    Accepted,
    Running,
    Finished,
    Canceling,
    Canceled,
    TimingOut,
    TimedOut,
    Skipped,
    Broken,
    Unknown,
}

Variants

Pending

The job has just been created and doesn’t have a state yet

Waiting

The job is waiting on a wait step to finish

WaitingFailed

The job was in a Waiting state when the build failed

Blocked

The job is waiting on a block step to finish

BlockedFailed

The job was in a Blocked state when the build failed

Unblocked

This block job has been manually unblocked

UnblockedFailed

This block job was in a Blocked state when the build failed

Limited

The job is waiting for jobs with the same concurrency group to finish

Scheduled

The job is scheduled and waiting for an agent

Assigned

The job has been assigned to an agent, and it’s waiting for it to accept

Accepted

The job was accepted by the agent, and now it’s waiting to start running

Running

The job is runing

Finished

The job has finished

Canceling

The job is currently canceling

Canceled

The job was canceled

TimingOut

The job is timing out for taking too long

TimedOut

The job timed out

Skipped

The job was skipped

Broken

The jobs configuration means that it can’t be run

Unknown

An unknown job state

Trait Implementations

impl Debug for JobStates[src]

impl PartialEq<JobStates> for JobStates[src]

impl StructuralPartialEq for JobStates[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.