Struct tower::retry::RetryLayer
source · 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) -> Self
pub fn new(policy: P) -> Self
Create a new RetryLayer
from a retry policy
Trait Implementations§
source§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