mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
dc480f7b0e
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
566 B
566 B
This example explores 3 different ways you can create custom rejections for already existing extractors
with_rejection
: Usesaxum_extra::extract::WithRejection
to transform one rejection into anotherderive_from_request
: Usesaxum_macros::FromRequest
to wrap another extractor and customize the rejectioncustom_extractor
: Manual implementation ofFromRequest
that wraps another extractor
Run with
cargo run -p example-customize-extractor-error