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