[go: up one dir, main page]

tower 0.5.2

Tower is a library of modular and reusable components for building robust clients and servers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod layer;
mod layer_clone;
mod layer_clone_sync;
mod sync;
mod unsync;

#[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
pub use self::{
    layer::BoxLayer, layer_clone::BoxCloneServiceLayer, layer_clone_sync::BoxCloneSyncServiceLayer,
    sync::BoxService, unsync::UnsyncBoxService,
};