mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +01:00
852e548e19
* Support `#[from_request(via(...))]` on enums * Check `#[from_request]` on variants * check for non enum/struct and clean up * changelog * changelog * remove needless feature * changelog ref
7 lines
135 B
Rust
7 lines
135 B
Rust
use axum_macros::FromRequest;
|
|
|
|
#[derive(FromRequest, Clone)]
|
|
#[from_request(rejection_derive(!Error))]
|
|
enum Extractor {}
|
|
|
|
fn main() {}
|