mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
7d88bd3a66
* Check for multiple body extractors in `debug_handler` * changelog link
11 lines
331 B
Text
11 lines
331 B
Text
error: Handlers cannot take more than 16 arguments. Use `(a, b): (ExtractorA, ExtractorA)` to further nest extractors
|
|
--> tests/debug_handler/fail/too_many_extractors.rs:6:5
|
|
|
|
|
6 | / e1: Uri,
|
|
7 | | e2: Uri,
|
|
8 | | e3: Uri,
|
|
9 | | e4: Uri,
|
|
... |
|
|
21 | | e16: Uri,
|
|
22 | | e17: Uri,
|
|
| |_____________^
|