tower-async 0.2.0

Tower Async is a library of modular and reusable components for building robust clients and servers. An "Async Trait" fork from the original Tower Library.
Documentation
1
2
3
4
5
6
7
8
//! Trait aliases for Services that produce specific types of Responses.

mod make_connection;
mod make_service;

pub use self::make_connection::MakeConnection;
pub use self::make_service::shared::Shared;
pub use self::make_service::{AsService, IntoService, MakeService};