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
mod from_request;
mod from_request_parts;

pub use self::{from_request::FromRequest, from_request_parts::FromRequestParts};
use crate::Body;

/// Alias for `http::Request` with a defaulted body type.
pub type Request<B = Body> = http::Request<B>;
pub type RequestParts = http::request::Parts;