mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-30 04:02:42 +01:00
896ffc5fba
* feat: remove ContentLengthLimit * feat: remove ContentLengthLimit rejections * fix: update multipart docs * fix: typo * feat: add wip extractor code * feat: revert "feat: add wip extractor code" * fix: update Multipart docs * fix: update examples * fix: missing import in an example * fix: broken import yet again * fix: disable default body limit for example * fix: key value store example * fix: update expected debug_handler output * chore: update CHANGELOG * Update axum/CHANGELOG.md Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
16 lines
796 B
Text
16 lines
796 B
Text
error[E0277]: the trait bound `String: FromRequestParts<S>` is not satisfied
|
|
--> tests/from_request/fail/parts_extracting_body.rs:6:11
|
|
|
|
|
6 | body: String,
|
|
| ^^^^^^ the trait `FromRequestParts<S>` is not implemented for `String`
|
|
|
|
|
= help: the following other types implement trait `FromRequestParts<S>`:
|
|
<() as FromRequestParts<S>>
|
|
<(T1, T2) as FromRequestParts<S>>
|
|
<(T1, T2, T3) as FromRequestParts<S>>
|
|
<(T1, T2, T3, T4) as FromRequestParts<S>>
|
|
<(T1, T2, T3, T4, T5) as FromRequestParts<S>>
|
|
<(T1, T2, T3, T4, T5, T6) as FromRequestParts<S>>
|
|
<(T1, T2, T3, T4, T5, T6, T7) as FromRequestParts<S>>
|
|
<(T1, T2, T3, T4, T5, T6, T7, T8) as FromRequestParts<S>>
|
|
and 26 others
|