pavex/response/
mod.rs

1//! Build HTTP responses, from scratch or by converting existing types.
2//!
3//! Check out the [`Response`][crate::Response] type for more details.
4pub use body::body_::ResponseBody;
5pub use response_::ResponseHead;
6
7pub mod body;
8pub(crate) mod into_response;
9pub(crate) mod response_;