pavex 0.2.10

A framework for building API services and web applications in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Build HTTP responses, from scratch or by converting existing types.
//!
//! Check out the [`Response`][crate::Response] type for more details.
pub use body::body_::ResponseBody;
pub use response_::ResponseHead;

pub mod body;
pub(crate) mod into_response;
pub(crate) mod response_;