mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 00:56:27 +01:00
18 lines
872 B
Text
18 lines
872 B
Text
error[E0277]: the trait bound `String: FromRequestParts<S>` 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`
|
|
|
|
|
= note: Function argument is not a valid axum extractor.
|
|
See `https://docs.rs/axum/0.7/axum/extract/index.html` for details
|
|
= help: the following other types implement trait `FromRequestParts<S>`:
|
|
<Extractor as FromRequestParts<S>>
|
|
<HeaderMap as FromRequestParts<S>>
|
|
<Extension<T> as FromRequestParts<S>>
|
|
<Method as FromRequestParts<S>>
|
|
<axum::http::request::Parts as FromRequestParts<S>>
|
|
<Uri as FromRequestParts<S>>
|
|
<Version as FromRequestParts<S>>
|
|
<Extensions as FromRequestParts<S>>
|
|
and $N others
|