mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-17 04:09:03 +01:00
7705ef6661
* Add missing leading double colon * Separate handling of last element in FromRequest derive * FromRequestParts derive * fix it and add lots of tests * docs * changelog * Update axum-macros/src/lib.rs Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
21 lines
364 B
Rust
21 lines
364 B
Rust
use axum::{
|
|
extract::{FromRequestParts, Extension},
|
|
response::Response,
|
|
};
|
|
use axum_macros::FromRequestParts;
|
|
|
|
#[derive(Clone, FromRequestParts)]
|
|
#[from_request(via(Extension))]
|
|
struct Extractor {
|
|
one: i32,
|
|
two: String,
|
|
three: bool,
|
|
}
|
|
|
|
fn assert_from_request()
|
|
where
|
|
Extractor: FromRequestParts<(), Rejection = Response>,
|
|
{
|
|
}
|
|
|
|
fn main() {}
|