1 //! Trait aliases for Services that produce specific types of Responses.
2 
3 mod make_connection;
4 mod make_service;
5 
6 pub use self::make_connection::MakeConnection;
7 pub use self::make_service::shared::Shared;
8 pub use self::make_service::{AsService, IntoService, MakeService};
9 
10 pub mod future {
11     //! Future types
12 
13     pub use super::make_service::shared::SharedFuture;
14 }
15