pub struct JobError { /* private fields */ }Expand description
Failure returned by a worker job handler.
Implementations§
Source§impl JobError
impl JobError
Sourcepub fn retryable(message: impl Into<String>) -> Self
pub fn retryable(message: impl Into<String>) -> Self
Creates a failure the worker retries until the policy is exhausted.
Sourcepub fn permanent(message: impl Into<String>) -> Self
pub fn permanent(message: impl Into<String>) -> Self
Creates a failure the worker dead-letters without another attempt.
Sourcepub const fn is_retryable(&self) -> bool
pub const fn is_retryable(&self) -> bool
Reports whether the worker may attempt the delivery again.
Trait Implementations§
impl Eq for JobError
Source§impl Error for JobError
impl Error for JobError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for JobError
Auto Trait Implementations§
impl Freeze for JobError
impl RefUnwindSafe for JobError
impl Send for JobError
impl Sync for JobError
impl Unpin for JobError
impl UnsafeUnpin for JobError
impl UnwindSafe for JobError
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