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]
pub fn new(policy: P, service: S) -> Retry<P, S>
[src]
Retry the inner service depending on this Policy
.
Trait Implementations
impl<P, S> Clone for Retry<P, S> where
P: Clone,
S: Clone,
[src]
P: Clone,
S: Clone,
impl<P, S> Debug for Retry<P, S> where
P: Debug,
S: Debug,
[src]
P: Debug,
S: Debug,
impl<P, S, Request> Service<Request> for Retry<P, S> where
P: Policy<Request, <S as Service<Request>>::Response, <S as Service<Request>>::Error> + Clone,
S: Service<Request> + Clone,
[src]
P: Policy<Request, <S as Service<Request>>::Response, <S as Service<Request>>::Error> + Clone,
S: Service<Request> + Clone,
type Response = <S as Service<Request>>::Response
Responses given by the service.
type Error = <S as Service<Request>>::Error
Errors produced by the service.
type Future = ResponseFuture<P, S, Request>
The future response value.
pub fn poll_ready(
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), <Retry<P, S> as Service<Request>>::Error>>
[src]
&mut self,
cx: &mut Context<'_>
) -> Poll<Result<(), <Retry<P, S> as Service<Request>>::Error>>
pub fn call(
&mut self,
request: Request
) -> <Retry<P, S> as Service<Request>>::Future
[src]
&mut self,
request: Request
) -> <Retry<P, S> as Service<Request>>::Future
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> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Request> ServiceExt<Request> for T where
T: Service<Request> + ?Sized,
[src]
T: Service<Request> + ?Sized,
pub fn ready(&mut self) -> Ready<'_, Self, Request>ⓘ
[src]
pub fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request>
[src]
pub fn ready_oneshot(self) -> ReadyOneshot<Self, Request>
[src]
pub fn oneshot(self, req: Request) -> Oneshot<Self, Request>ⓘ
[src]
pub fn call_all<S>(self, reqs: S) -> CallAll<Self, S> where
S: Stream<Item = Request>,
Self::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>,
[src]
S: Stream<Item = Request>,
Self::Error: Into<Box<dyn Error + 'static + Send + Sync, Global>>,
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>,