tower_make/
lib.rs

1#![doc(html_root_url = "https://docs.rs/tower-make/0.3.0")]
2#![warn(
3    missing_debug_implementations,
4    missing_docs,
5    rust_2018_idioms,
6    unreachable_pub
7)]
8
9//! Trait aliases for Services that produce specific types of Responses.
10
11#[cfg(feature = "connect")]
12mod make_connection;
13mod make_service;
14
15#[cfg(feature = "connect")]
16pub use crate::make_connection::MakeConnection;
17pub use crate::make_service::MakeService;
18
19mod sealed {
20    pub trait Sealed<T> {}
21}