mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 09:08:05 +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() {}
|