mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-27 01:31:23 +01:00
13 lines
222 B
Rust
13 lines
222 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() {}
|