pub enum ClaimOutcome {
RanJob,
NoJobs,
Error(String),
Skipped,
}Expand description
Outcome of a single claim attempt.
Variants§
RanJob
We claimed and ran a job — back to the fast poll interval.
NoJobs
204 from the API — nothing to do, back off briefly.
Error(String)
HTTP / wiring error — back off briefly and try again.
Skipped
Worker is currently auto_enabled = false; skip the claim entirely.
Trait Implementations§
Source§impl Clone for ClaimOutcome
impl Clone for ClaimOutcome
Source§fn clone(&self) -> ClaimOutcome
fn clone(&self) -> ClaimOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClaimOutcome
impl Debug for ClaimOutcome
Source§impl PartialEq for ClaimOutcome
impl PartialEq for ClaimOutcome
Source§fn eq(&self, other: &ClaimOutcome) -> bool
fn eq(&self, other: &ClaimOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ClaimOutcome
impl StructuralPartialEq for ClaimOutcome
Auto Trait Implementations§
impl Freeze for ClaimOutcome
impl RefUnwindSafe for ClaimOutcome
impl Send for ClaimOutcome
impl Sync for ClaimOutcome
impl Unpin for ClaimOutcome
impl UnsafeUnpin for ClaimOutcome
impl UnwindSafe for ClaimOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.