hitbox-http 0.2.1

Cacheable HTTP Request and Response
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

pub mod body;
mod cache_status;
mod cacheable;
pub mod extractors;
pub mod predicates;
pub mod query;
mod request;
mod response;

pub use body::{BufferedBody, CollectExactResult, PartialBufferedBody, Remaining};
pub use cache_status::DEFAULT_CACHE_STATUS_HEADER;
pub use cacheable::CacheableSubject;
pub use request::CacheableHttpRequest;
pub use response::{CacheableHttpResponse, SerializableHttpResponse};