mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-24 00:00:16 +02:00
The things are also covered by the doc tests but this also gives us assertions on the errors produced, which is the whole point of this crate :)
13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
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,
|
|
| |________________^
|