io-http 0.1.1

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

pub mod chars;
pub mod headers;
pub mod request;
pub mod response;
pub mod send;
pub mod status;