hyper_util/service/
mod.rs

1//! Service utilities.
2
3#[cfg(feature = "service")]
4mod glue;
5#[cfg(any(feature = "client-legacy", feature = "service"))]
6mod oneshot;
7
8#[cfg(feature = "service")]
9pub use self::glue::{TowerToHyperService, TowerToHyperServiceFuture};
10#[cfg(any(feature = "client-legacy", feature = "service"))]
11pub(crate) use self::oneshot::Oneshot;