xitca_http/util/
mod.rs

1//! utility module for useful middleware and service types.
2
3pub mod middleware;
4
5pub mod service;
6
7#[cfg(any(feature = "http1", feature = "http2"))]
8pub mod buffered;
9pub(crate) mod futures;
10#[cfg(feature = "runtime")]
11pub(crate) mod timer;