Expand description
Re-exports
Modules
- Types and traits for extracting data from requests.
- HTTP request types.
- HTTP response types.
- Route requests to the appropriate handler.
- Timer for creating timeouts during request parsing and request handling.
- UrlEncodedString and related types.
Structs
- Server Configuration.
- A Marker showing that the response has been sent.
Enums
- Errors arising while handling a request.
Functions
- Serve incoming requests read from
reader, route them toapp, and write responses towriter. App has no state. - Serve incoming requests read from
reader, route them toapp, and write responses towriter. App has a state ofState.