actix-http 3.3.0

HTTP primitives for the Actix ecosystem
Documentation
//! HTTP response.

mod builder;
mod head;
#[allow(clippy::module_inception)]
mod response;

pub use self::builder::ResponseBuilder;
pub(crate) use self::head::BoxedResponseHead;
pub use self::head::ResponseHead;
pub use self::response::Response;