mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-14 02:40:47 +01:00
f1f004a057
* Make `axum-debug` handle more cases * Only just trybuild tests on stable * revert changes to hello-world example * Remove a bit of duplication * return error on generics * address review feedback * Support associated functions with receiver or returns `Self` * fix indentation
11 lines
338 B
Text
11 lines
338 B
Text
error: Handlers cannot take more than 16 arguments. Use `(a, b): (ExtractorA, ExtractorA)` to further nest extractors
|
|
--> tests/fail/too_many_extractors.rs:5:5
|
|
|
|
|
5 | / e1: String,
|
|
6 | | e2: String,
|
|
7 | | e3: String,
|
|
8 | | e4: String,
|
|
... |
|
|
20 | | e16: String,
|
|
21 | | e17: String,
|
|
| |________________^
|