mirror of
https://github.com/tokio-rs/axum.git
synced 2025-12-30 13:11:03 +00:00
This example explores 3 different ways you can create custom rejections for already existing extractors
with_rejection: Usesaxum_extra::extract::WithRejectionto transform one rejection into anotherderive_from_request: Uses theaxum::extract::FromRequestderive macro to wrap another extractor and customize the rejectioncustom_extractor: Manual implementation ofFromRequestthat wraps another extractor
Run with
cargo run -p example-customize-extractor-error