Files

7 lines
115 B
Rust
Raw Permalink Normal View History

use axum_macros::FromRequest;
#[derive(FromRequest)]
struct Extractor(#[from_request(foo)] String);
fn main() {}