mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-24 16:17:56 +01:00
13 lines
364 B
Text
13 lines
364 B
Text
|
error: too many extractors. 16 extractors are allowed
|
||
|
note: you can nest extractors like "a: (Extractor, Extractor), b: (Extractor, Extractor)"
|
||
|
--> 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,
|
||
|
| |________________^
|