stream_httparse/
lib.rs

1#![warn(missing_docs)]
2//! A fast and simple to use HTTP-Parsing crate
3
4mod request;
5pub use request::Request;
6
7mod response;
8pub use response::Response;
9
10mod status_code;
11pub use status_code::StatusCode;
12
13mod method;
14pub use method::Method;
15
16/// Holds some more Types that are needed for Headers
17pub mod header;
18pub use header::Header;
19
20mod headers;
21pub use headers::Headers;
22
23mod chunk;
24pub use chunk::Chunk;
25
26pub(crate) mod general;
27
28/// This module holds all the Parsers that can deal
29/// with parsing the Data in multiple chunks and dont
30/// need all of it right away
31pub mod streaming_parser;