1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![warn(missing_docs)]
//! A fast and simple to use HTTP-Parsing crate

mod request;
pub use request::Request;

mod response;
pub use response::Response;

mod status_code;
pub use status_code::StatusCode;

mod method;
pub use method::Method;

/// Holds some more Types that are needed for Headers
pub mod header;
pub use header::Header;

mod headers;
pub use headers::Headers;

mod chunk;
pub use chunk::Chunk;

/// This module holds all the Parsers that can deal
/// with parsing the Data in multiple chunks and dont
/// need all of it right away
pub mod streaming_parser;