hyper/server/
mod.rs

1//! HTTP Server
2//!
3//! A "server" is usually created by listening on a port for new connections,
4//! parse HTTP requests, and hand them off to a `Service`.
5//!
6//! How exactly you choose to listen for connections is not something hyper
7//! concerns itself with. After you have a connection, you can handle HTTP over
8//! it with the types in the [`conn`] module.
9pub mod conn;