volo-http 0.5.6

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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 redirect;
mod timeout;
pub(crate) mod utils;

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