pub enum JobState {
Pending,
Running,
Succeeded,
Failed,
}Expand description
The current state of a job.
Variants
Pending
The job is waiting to run.
Running
The job is currently running.
Succeeded
The job finished successfully.
Failed
The job failed and exceeded its retry limit. It will not be retried.
Implementations
Trait Implementations
impl Copy for JobState
impl Eq for JobState
impl StructuralEq for JobState
impl StructuralPartialEq for JobState
Auto Trait Implementations
impl RefUnwindSafe for JobState
impl Send for JobState
impl Sync for JobState
impl Unpin for JobState
impl UnwindSafe for JobState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more