tower/util/boxed/
mod.rs

1mod layer;
2mod layer_clone;
3mod layer_clone_sync;
4mod sync;
5mod unsync;
6
7#[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
8pub use self::{
9    layer::BoxLayer, layer_clone::BoxCloneServiceLayer, layer_clone_sync::BoxCloneSyncServiceLayer,
10    sync::BoxService, unsync::UnsyncBoxService,
11};