mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-17 04:09:03 +01:00
7 lines
115 B
Rust
7 lines
115 B
Rust
|
use axum_macros::FromRequest;
|
||
|
|
||
|
#[derive(FromRequest)]
|
||
|
struct Extractor(#[from_request(foo)] String);
|
||
|
|
||
|
fn main() {}
|