Home
last modified time | relevance | path

Searched defs:LayerFn (Results 1 – 2 of 2) sorted by relevance

/external/rust/android-crates-io/crates/tower-layer/src/
Dlayer_fn.rs73 pub struct LayerFn<F> { struct
77 impl<F, S, Out> Layer<S> for LayerFn<F> implementation
88 impl<F> fmt::Debug for LayerFn<F> { implementation
/external/rust/android-crates-io/crates/axum/src/
Dboxed.rs182 pub(crate) trait LayerFn<B, E, B2, E2>: FnOnce(Route<B, E>) -> Route<B2, E2> + Send { interface