mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
13 lines
224 B
Rust
13 lines
224 B
Rust
|
use axum_macros::FromRequestParts;
|
||
|
|
||
|
#[derive(FromRequestParts)]
|
||
|
struct Extractor {}
|
||
|
|
||
|
fn assert_from_request()
|
||
|
where
|
||
|
Extractor: axum::extract::FromRequestParts<(), Rejection = std::convert::Infallible>,
|
||
|
{
|
||
|
}
|
||
|
|
||
|
fn main() {}
|