[][src]Struct tower::retry::Retry

pub struct Retry<P, S> { /* fields omitted */ }
This is supported on crate feature retry only.

Configure retrying requests of "failed" responses.

A Policy classifies what is a "failed" response.

Implementations

impl<P, S> Retry<P, S>[src]

pub fn new(policy: P, service: S) -> Self[src]

Retry the inner service depending on this Policy.

pub fn get_ref(&self) -> &S[src]

Get a reference to the inner service

pub fn get_mut(&mut self) -> &mut S[src]

Get a mutable reference to the inner service

pub fn into_inner(self) -> S[src]

Consume self, returning the inner service

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, Request> Service<Request> for Retry<P, S> where
    P: Policy<Request, S::Response, S::Error> + Clone,
    S: Service<Request> + Clone
[src]

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.

impl<'pin, P, S> Unpin for Retry<P, S> where
    __Retry<'pin, P, S>: Unpin
[src]

Auto Trait Implementations

impl<P, S> RefUnwindSafe for Retry<P, S> where
    P: RefUnwindSafe,
    S: RefUnwindSafe
[src]

impl<P, S> Send for Retry<P, S> where
    P: Send,
    S: Send
[src]

impl<P, S> Sync for Retry<P, S> where
    P: Sync,
    S: Sync
[src]

impl<P, S> UnwindSafe for Retry<P, S> where
    P: UnwindSafe,
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,