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 fn new(policy: P) -> RetryLayer<P>
pub fn new(policy: P) -> RetryLayer<P>
Create a new RetryLayer from a retry policy
Trait Implementations§
Source§impl<P> Debug for RetryLayer<P>where
P: Debug,
impl<P> Debug for RetryLayer<P>where
P: Debug,
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