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
//! Collections of some useful [`Layer`]s.
//!
//! [`Layer`]: motore::layer::Layer

mod fail_on_status;
pub mod header;
#[cfg(feature = "http1")]
pub mod http_proxy;
mod timeout;
mod utils;

pub use self::{
    fail_on_status::{FailOnStatus, StatusCodeError},
    timeout::Timeout,
    utils::TargetLayer,
};