[−][src]Trait tower_util::ServiceExt
An extension trait for Service
s that provides a variety of convenient
adapters
Provided methods
ⓘImportant traits for Ready<'a, T, Request>fn ready(&mut self) -> Ready<Self, Request> where
Self: Sized,
[−]
ⓘImportant traits for Ready<'a, T, Request>
Self: Sized,
A future yielding the service when it is ready to accept a request.
ⓘImportant traits for Oneshot<S, Req>fn oneshot(self, req: Request) -> Oneshot<Self, Request> where
Self: Sized,
[−]
ⓘImportant traits for Oneshot<S, Req>
Self: Sized,
Consume this Service
, calling with the providing request once it is ready.
fn call_all<S>(self, reqs: S) -> CallAll<Self, S> where
Self: Sized,
Self::Error: Into<Error>,
S: Stream<Item = Request>,
[−]
Self: Sized,
Self::Error: Into<Error>,
S: Stream<Item = Request>,
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.