Struct tower_retry::Retry [−][src]
Configure retrying requests of “failed” responses.
A Policy
classifies what is a “failed” response.
Implementations
impl<P, S> Retry<P, S>
[src]
Trait Implementations
impl<P: Clone, S: Clone> Clone for Retry<P, S>
[src]
impl<P: Debug, S: Debug> Debug for Retry<P, S>
[src]
impl<P, S> PinnedDrop for Retry<P, S>
[src]
impl<P, S, Request> Service<Request> for Retry<P, S> where
P: Policy<Request, S::Response, S::Error> + Clone,
S: Service<Request> + Clone,
[src]
P: Policy<Request, S::Response, S::Error> + Clone,
S: Service<Request> + Clone,
type Response = S::Response
Responses given by the service.
type Error = S::Error
Errors produced by the service.
type Future = ResponseFuture<P, S, Request>
The future response value.
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
[src]
fn call(&mut self, request: Request) -> Self::Future
[src]
impl<'pin, P, S> Unpin for Retry<P, S> where
__Retry<'pin, P, S>: Unpin,
[src]
__Retry<'pin, P, S>: Unpin,
impl<P, S> UnsafeUnpin for Retry<P, S>
[src]
Auto Trait Implementations
impl<P, S> RefUnwindSafe for Retry<P, S> where
P: RefUnwindSafe,
S: RefUnwindSafe,
P: RefUnwindSafe,
S: RefUnwindSafe,
impl<P, S> Send for Retry<P, S> where
P: Send,
S: Send,
P: Send,
S: Send,
impl<P, S> Sync for Retry<P, S> where
P: Sync,
S: Sync,
P: Sync,
S: Sync,
impl<P, S> UnwindSafe for Retry<P, S> where
P: UnwindSafe,
S: UnwindSafe,
P: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,