Trait tower::ServiceExt [−][src]
An extension trait for Services that provides a variety of convenient
adapters
Provided methods
pub fn ready(&mut self) -> Ready<'_, Self, Request>ⓘ[src]
👎 Deprecated since 0.3.1:
prefer ready_and which yields the service
Resolves when the service is ready to accept a request.
pub fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request>[src]
Yields a mutable reference to the service when it is ready to accept a request.
pub fn ready_oneshot(self) -> ReadyOneshot<Self, Request>[src]
Yields the service when it is ready to accept a request.
pub fn oneshot(self, req: Request) -> Oneshot<Self, Request>ⓘ[src]
Consume this Service, calling with the providing request once it is ready.
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>>,
Process all requests from the given Stream, and produce a Stream of their responses.
This is essentially Stream<Item = Request> + Self => Stream<Item = Response>. See the
documentation for CallAll for details.
Implementors
impl<T, Request> ServiceExt<Request> for T where
T: Service<Request> + ?Sized, [src]
T: Service<Request> + ?Sized,