hitbox_http/lib.rs
1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3
4pub mod body;
5mod cache_status;
6mod cacheable;
7pub mod extractors;
8pub mod predicates;
9pub mod query;
10mod request;
11mod response;
12
13pub use body::{BufferedBody, CollectExactResult, PartialBufferedBody, Remaining};
14pub use cache_status::DEFAULT_CACHE_STATUS_HEADER;
15pub use cacheable::CacheableSubject;
16pub use request::CacheableHttpRequest;
17pub use response::{CacheableHttpResponse, SerializableHttpResponse};