Expand description
Hyper service that adds a context to an incoming request and passes it on to a wrapped service.
Structsยง
- Drop
Context Make Service - Middleware wrapper service that drops the context from the incoming request
and passes the plain
hyper::Requestto the wrapped service. - Drop
Context Service - Swagger Middleware that wraps a
hyper::service::Service, and drops any contextual information on the request. Services will normally want to useDropContextMakeService, which will create aDropContextServiceto handle each connection.