pavex 0.1.79

A framework for building API services and web applications in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Process and extract data from incoming HTTP requests.
//!
//! # Guide
//!
//! Check out [the guide](https://pavex.dev/docs/guide/request_data/)
//! for a thorough introduction to request-based data extractors.
pub use request_head::RequestHead;

pub mod body;
pub mod path;
pub mod query;
mod request_head;