mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +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
6 lines
93 B
Rust
6 lines
93 B
Rust
use axum_macros::FromRequest;
|
|
|
|
#[derive(FromRequest, Clone)]
|
|
enum Extractor {}
|
|
|
|
fn main() {}
|