Remove routing::Layered (#383)

This commit is contained in:
David Pedersen
2021-10-13 12:21:22 +02:00
committed by GitHub
parent 8ca5538405
commit 554e3a0ad4
3 changed files with 8 additions and 61 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ pub trait Handler<B, T>: Clone + Send + Sized + 'static {
/// This can be used to add additional processing to a request for a single
/// handler.
///
/// Note this differs from [`routing::Layered`](crate::routing::Layered)
/// Note this differs from [`routing::Router::layer`](crate::routing::Router::layer)
/// which adds a middleware to a group of routes.
///
/// # Example