#[non_exhaustive]pub enum RetryReason {
RetryableError {
kind: ErrorKind,
retry_after: Option<Duration>,
},
}
Expand description
The reason for a retry.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RetryableError
When an error is received that should be retried, this reason is returned.
Trait Implementations§
source§impl Clone for RetryReason
impl Clone for RetryReason
source§fn clone(&self) -> RetryReason
fn clone(&self) -> RetryReason
Returns a copy of the value. Read more
1.0.0 · 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 RetryReason
impl Debug for RetryReason
source§impl Display for RetryReason
impl Display for RetryReason
source§impl PartialEq for RetryReason
impl PartialEq for RetryReason
impl Eq for RetryReason
impl StructuralPartialEq for RetryReason
Auto Trait Implementations§
impl Freeze for RetryReason
impl RefUnwindSafe for RetryReason
impl Send for RetryReason
impl Sync for RetryReason
impl Unpin for RetryReason
impl UnwindSafe for RetryReason
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.