volo-http 0.5.5

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Utilities of Volo-HTTP.

pub mod consts;
#[cfg(feature = "cookie")]
pub mod cookie;
mod extension;
#[cfg(feature = "json")]
pub(crate) mod json;
#[cfg(feature = "client")]
pub(crate) mod lazy;
pub(crate) mod macros;
#[cfg(test)]
pub mod test_helpers;

pub use self::extension::Extension;