Struct apalis_core::layers::retry::RetryLayer
source · pub struct RetryLayer<P> { /* private fields */ }Available on crate feature
retry only.Expand description
Re-export from tower::retry::RetryLayer
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> 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