pub struct RetryLayer<P> { /* private fields */ }
Expand description
Retry requests based on a policy
Implementations§
Source§impl<P> RetryLayer<P>
impl<P> RetryLayer<P>
Sourcepub const fn new(policy: P) -> Self
pub const fn new(policy: P) -> Self
Creates a new RetryLayer
from a retry policy.
Trait Implementations§
Source§impl<P: Clone> Clone for RetryLayer<P>
impl<P: Clone> Clone for RetryLayer<P>
Source§fn clone(&self) -> RetryLayer<P>
fn clone(&self) -> RetryLayer<P>
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<P: Debug> Debug for RetryLayer<P>
impl<P: Debug> Debug for RetryLayer<P>
Auto Trait Implementations§
impl<P> Freeze for RetryLayer<P>where
P: Freeze,
impl<P> RefUnwindSafe for RetryLayer<P>where
P: RefUnwindSafe,
impl<P> Send for RetryLayer<P>where
P: Send,
impl<P> Sync for RetryLayer<P>where
P: Sync,
impl<P> Unpin for RetryLayer<P>where
P: Unpin,
impl<P> UnwindSafe for RetryLayer<P>where
P: UnwindSafe,
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