summaryrefslogtreecommitdiff
path: root/axum-extra/src/handler/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'axum-extra/src/handler/mod.rs')
-rw-r--r--axum-extra/src/handler/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/axum-extra/src/handler/mod.rs b/axum-extra/src/handler/mod.rs
index 915852a1..c3bf7024 100644
--- a/axum-extra/src/handler/mod.rs
+++ b/axum-extra/src/handler/mod.rs
@@ -165,7 +165,7 @@ pub struct IntoHandler<H, T, S> {
impl<H, T, S> Handler<T, S> for IntoHandler<H, T, S>
where
- H: HandlerCallWithExtractors<T, S> + Clone + Send + 'static,
+ H: HandlerCallWithExtractors<T, S> + Clone + Send + Sync + 'static,
T: FromRequest<S> + Send + 'static,
T::Rejection: Send,
S: Send + Sync + 'static,