zon_core 0.0.4

part of a new WIP, very incomplete async http service stack
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Body;

mod into_response;
mod to_response_parts;

pub use self::{into_response::IntoResponse, to_response_parts::ToResponseParts};

/// Alias for `http::Response` with a defaulted body type.
pub type Response<B = Body> = http::Response<B>;
pub type ResponseParts = http::response::Parts;