pub enum JobStatus {
FastAck,
AckJob,
NAck,
}
Expand description
Once a job execution finishes, change its status by performing one of this actions.
Variants§
FastAck
Performs a best effort cluster wide deletion of the job.
AckJob
Acknowledges the execution of the jobs.
NAck
Puts back the job in the queue ASAP.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JobStatus
impl RefUnwindSafe for JobStatus
impl Send for JobStatus
impl Sync for JobStatus
impl Unpin for JobStatus
impl UnwindSafe for JobStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more