axum/axum-macros/tests/debug_handler/fail/duplicate_args.stderr
David Pedersen 568394a28e
Support changing state type in #[debug_handler] (#1271)
* support setting body type for #[debug_handler]

* Use lookahead1 to give better errors and detect duplicate arguments

* fix docs link
2022-08-18 11:41:14 +02:00

11 lines
371 B
Text

error: `body` specified more than once
--> tests/debug_handler/fail/duplicate_args.rs:3:33
|
3 | #[debug_handler(body = BoxBody, body = BoxBody)]
| ^^^^
error: `state` specified more than once
--> tests/debug_handler/fail/duplicate_args.rs:6:29
|
6 | #[debug_handler(state = (), state = ())]
| ^^^^^