Files

13 lines
224 B
Rust
Raw Permalink Normal View History

2022-08-23 21:14:02 +02:00
use axum_macros::FromRequestParts;
#[derive(FromRequestParts)]
struct Extractor();
fn assert_from_request()
where
Extractor: axum::extract::FromRequestParts<(), Rejection = std::convert::Infallible>,
{
}
fn main() {}