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