axum/examples/customize-extractor-error
2025-09-20 22:50:56 +02:00
..
src Replace async_trait with AFIT / RPITIT (#2308) 2024-09-28 21:27:11 +00:00
Cargo.toml axum-extra: Make axum optional dependency (#3485) 2025-09-20 22:50:56 +02:00
README.md Fix typo on customize-extractor-error example (#2124) 2023-07-27 14:03:10 +00:00

This example explores 3 different ways you can create custom rejections for already existing extractors

  • with_rejection: Uses axum_extra::extract::WithRejection to transform one rejection into another
  • derive_from_request: Uses the axum::extract::FromRequest derive macro to wrap another extractor and customize the rejection
  • custom_extractor: Manual implementation of FromRequest that wraps another extractor

Run with

cargo run -p example-customize-extractor-error