puzz-http 0.1.0

A set of types for representing HTTP requests and responses.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod extensions;

pub mod body;
pub mod request;
pub mod response;

pub use extensions::Extensions;
pub use request::Request;
pub use response::Response;

pub use http::header::{self, HeaderMap, HeaderName, HeaderValue};
pub use http::method::{self, Method};
pub use http::status::{self, StatusCode};
pub use http::uri::{self, Uri};
pub use http::version::{self, Version};
pub use http::{Error, Result};