io_http/rfc9110/mod.rs
1//! HTTP semantics ([RFC 9110]).
2//!
3//! Version-agnostic types shared by every HTTP wire-format module: methods,
4//! status codes, header field semantics, and the abstract request/response
5//! message structure that HTTP/1.0, HTTP/1.1, HTTP/2, and HTTP/3 all implement.
6//!
7//! [RFC 9110]: https://www.rfc-editor.org/rfc/rfc9110
8
9pub mod chars;
10pub mod headers;
11pub mod request;
12pub mod response;
13pub mod send;
14pub mod status;