mirror of https://github.com/tokio-rs/axum
19101f624d
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |
README.md
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
: Uses theaxum::extract::FromRequest
derive macro 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