Expand description
Server-side integration with Hyper.
Enabled with the hyper
feature (on by default).
Also contains an implementation of HttpRequest
for hyper::server::Request
and &mut hyper::server::Request
.
Structs§
- Hyper
Request - A request bundles several parts of an incoming
NetworkStream
, given to aHandler
. - Switch
- A container that implements
hyper::server::Handler
which will switch the handler implementation depending on if the incoming request is multipart or not.
Traits§
- Multipart
Handler - A trait defining a type that can handle an incoming multipart request.