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
16
//! Contexts and utils of HTTP Services.

#[cfg(feature = "client")]
pub mod client;

#[cfg(feature = "client")]
pub use self::client::ClientContext;

#[cfg(feature = "server")]
pub mod server;

#[cfg(feature = "server")]
pub use self::server::ServerContext;

#[cfg(all(feature = "client", feature = "server"))]
pub mod stat;