Expand description
Various utility types and functions that are generally with Tower.
Modules§
Structs§
- BoxService
- A boxed
Service + Send
trait object. - CallAll
- This is a
futures::Stream
of responses resulting from calling the wrappedtower::Service
for each request received on the wrappedStream
. - Call
AllUnordered - A stream of responses received from the inner service in received order.
- Oneshot
- A
Future
consuming aService
and request, waiting until theService
is ready, and then callingService::call
with the request, and waiting for thatFuture
. - Optional
- Optionally forwards requests to an inner service.
- Ready
- A future that resolves when a
Service
is ready to accept a request. - Ready
And - A future that yields a mutable reference to the service when it is ready to accept a request.
- Ready
Oneshot - A future that yields the service when it is ready to accept a request.
- Service
Fn - A
Service
implemented by a closure. - Unsync
BoxService - A boxed
Service
trait object.
Enums§
- Either
- Combine two different service types into a single type.
Traits§
- Service
Ext - An extension trait for
Service
s that provides a variety of convenient adapters
Functions§
- service_
fn - Returns a new
ServiceFn
with the given closure.