mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-19 13:10:41 +01:00
911c4a788e
* Handle structs without fields * Support opt-out of derived rejection traits * Handle duplicate opt outs * Improve error if opting out of `Display` or `Debug` but not `Error` * document `rejection_derive` * Handle using both `via` and `rejection_derive` * don't derive debug for `RejectionDeriveOptOuts` * Update axum-macros/src/from_request.rs Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com> Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
5 lines
219 B
Text
5 lines
219 B
Text
error: `Error` opt out specified more than once
|
|
--> tests/from_request/fail/derive_opt_out_duplicate.rs:4:42
|
|
|
|
|
4 | #[from_request(rejection_derive(!Error, !Error))]
|
|
| ^^^^^
|