pub enum JobStates {
Show 22 variants Pending, Waiting, WaitingFailed, Blocked, BlockedFailed, Unblocked, UnblockedFailed, Limiting, Limited, Scheduled, Assigned, Accepted, Running, Finished, Canceling, Canceled, TimingOut, TimedOut, Skipped, Broken, Expired, 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

Limiting

The job is waiting on a concurrency group check before becoming either LIMITED or SCHEDULED

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

Expired

The job expired before it was started on an agent

Unknown

An unknown job state

Trait Implementations

Formats the value using the given formatter. Read more

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more