1 2 3 4 5 6 7 8
//! Response types for client and server. use crate::body::Body; /// [`Response`] with [`Body`] as default body /// /// [`Response`]: http::response::Response pub type Response<B = Body> = http::response::Response<B>;