xitca-http 0.9.0

http library for xitca
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! http/2 specific module for types and protocol utilities.

mod body;
mod builder;
mod error;
mod proto;
mod service;

pub(crate) use self::proto::Dispatcher;

pub use self::body::RequestBody;
pub use self::builder::H3ServiceBuilder;
pub use self::error::Error;
pub use self::service::H3Service;