summaryrefslogtreecommitdiff
path: root/axum-macros/tests/debug_handler/pass/result_impl_into_response.rs
diff options
context:
space:
mode:
Diffstat (limited to 'axum-macros/tests/debug_handler/pass/result_impl_into_response.rs')
-rw-r--r--axum-macros/tests/debug_handler/pass/result_impl_into_response.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/axum-macros/tests/debug_handler/pass/result_impl_into_response.rs b/axum-macros/tests/debug_handler/pass/result_impl_into_response.rs
index 782fc930..f23c9b62 100644
--- a/axum-macros/tests/debug_handler/pass/result_impl_into_response.rs
+++ b/axum-macros/tests/debug_handler/pass/result_impl_into_response.rs
@@ -1,4 +1,4 @@
-use axum::{async_trait, extract::FromRequestParts, http::request::Parts, response::IntoResponse};
+use axum::{extract::FromRequestParts, http::request::Parts, response::IntoResponse};
use axum_macros::debug_handler;
fn main() {}
@@ -115,7 +115,6 @@ impl A {
}
}
-#[async_trait]
impl<S> FromRequestParts<S> for A
where
S: Send + Sync,