Expand description
Layers for building middleware stacks
Structs§
- Identity
- A no-op middleware.
- LayerFn
- A
Layerimplemented by a closure. See the docs forlayer_fnfor more details. - Stack
- Two middlewares chained together.
Traits§
- Layer
- Decorates a
Service, transforming either the request or the response. - Service
- An asynchronous function from a
Requestto aResponse.