via 1.0.1

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Asynchronously interact with [Request](crate::Request) and
//! [Response](crate::Response) bodies.
//!

pub mod size_hint;

mod any;
mod buffer;

pub use any::AnyBody;
pub use buffer::ByteBuffer;