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