pavex/request/body/mod.rs
1//! Extract data from the body of incoming requests.
2//!
3//! Check the [relevant section of the guide](https://pavex.dev/docs/guide/request_data/body/)
4//! for a thorough introduction to Pavex's body extractors.
5pub use buffered_body::BufferedBody;
6pub use json::JsonBody;
7pub use limit::BodySizeLimit;
8pub use raw_body::RawIncomingBody;
9pub use url_encoded::UrlEncodedBody;
10
11mod buffered_body;
12pub mod errors;
13mod json;
14mod limit;
15mod raw_body;
16mod url_encoded;