#[non_exhaustive]pub enum RetryAction {
NoActionIndicated,
RetryIndicated(RetryReason),
RetryForbidden,
}
Expand description
The result of running a ClassifyRetry
on a InterceptorContext
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
NoActionIndicated
When a classifier can’t run or has no opinion, this action is returned.
For example, if a classifier requires a parsed response and response parsing failed, this action is returned. If all classifiers return this action, no retry should be attempted.
RetryIndicated(RetryReason)
When a classifier runs and thinks a response should be retried, this action is returned.
RetryForbidden
When a classifier runs and decides a response must not be retried, this action is returned.
This action stops retry classification immediately, skipping any following classifiers.
Implementations§
Source§impl RetryAction
impl RetryAction
Sourcepub fn retryable_error(kind: ErrorKind) -> RetryAction
pub fn retryable_error(kind: ErrorKind) -> RetryAction
Create a new RetryAction
indicating that a retry is necessary.
Sourcepub fn retryable_error_with_explicit_delay(
kind: ErrorKind,
retry_after: Duration,
) -> RetryAction
pub fn retryable_error_with_explicit_delay( kind: ErrorKind, retry_after: Duration, ) -> RetryAction
Create a new RetryAction
indicating that a retry is necessary after an explicit delay.
Sourcepub fn transient_error() -> RetryAction
pub fn transient_error() -> RetryAction
Create a new RetryAction
indicating that a retry is necessary because of a transient error.
Sourcepub fn throttling_error() -> RetryAction
pub fn throttling_error() -> RetryAction
Create a new RetryAction
indicating that a retry is necessary because of a throttling error.
Sourcepub fn server_error() -> RetryAction
pub fn server_error() -> RetryAction
Create a new RetryAction
indicating that a retry is necessary because of a server error.
Sourcepub fn client_error() -> RetryAction
pub fn client_error() -> RetryAction
Create a new RetryAction
indicating that a retry is necessary because of a client error.
Sourcepub fn should_retry(&self) -> bool
pub fn should_retry(&self) -> bool
Check if a retry is indicated.
Trait Implementations§
Source§impl Clone for RetryAction
impl Clone for RetryAction
Source§fn clone(&self) -> RetryAction
fn clone(&self) -> RetryAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RetryAction
impl Debug for RetryAction
Source§impl Default for RetryAction
impl Default for RetryAction
Source§fn default() -> RetryAction
fn default() -> RetryAction
Source§impl Display for RetryAction
impl Display for RetryAction
Source§impl PartialEq for RetryAction
impl PartialEq for RetryAction
impl Eq for RetryAction
impl StructuralPartialEq for RetryAction
Auto Trait Implementations§
impl Freeze for RetryAction
impl RefUnwindSafe for RetryAction
impl Send for RetryAction
impl Sync for RetryAction
impl Unpin for RetryAction
impl UnwindSafe for RetryAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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
key
and return true
if they are equal.