summaryrefslogtreecommitdiff
path: root/axum-macros/tests/from_request/fail/parts_extracting_body.stderr
diff options
context:
space:
mode:
authorZheng Li <875543533@qq.com>2024-09-29 05:27:11 +0800
committerGitHub <noreply@github.com>2024-09-28 21:27:11 +0000
commit19101f624d471856b71b273a01189a0dcb4468c7 (patch)
treef04327cc0011198b08ffdff70b76c08244cd477a /axum-macros/tests/from_request/fail/parts_extracting_body.stderr
parentdda5a273b5ee1e965c726fe7045f1b145414460f (diff)
Replace async_trait with AFIT / RPITIT (#2308)
Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
Diffstat (limited to 'axum-macros/tests/from_request/fail/parts_extracting_body.stderr')
-rw-r--r--axum-macros/tests/from_request/fail/parts_extracting_body.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/axum-macros/tests/from_request/fail/parts_extracting_body.stderr b/axum-macros/tests/from_request/fail/parts_extracting_body.stderr
index d732f2cb..d2401803 100644
--- a/axum-macros/tests/from_request/fail/parts_extracting_body.stderr
+++ b/axum-macros/tests/from_request/fail/parts_extracting_body.stderr
@@ -1,8 +1,8 @@
-error[E0277]: the trait bound `String: FromRequestParts<S>` is not satisfied
+error[E0277]: the trait bound `String: FromRequestParts<_>` is not satisfied
--> tests/from_request/fail/parts_extracting_body.rs:5:11
|
5 | body: String,
- | ^^^^^^ the trait `FromRequestParts<S>` is not implemented for `String`
+ | ^^^^^^ the trait `FromRequestParts<_>` is not implemented for `String`
|
= note: Function argument is not a valid axum extractor.
See `https://docs.rs/axum/0.7/axum/extract/index.html` for details