mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-23 07:39:25 +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>
12 lines
276 B
Rust
12 lines
276 B
Rust
use axum::{body::Body, routing::get, Extension, Router};
|
|
use axum_macros::FromRequestParts;
|
|
|
|
#[derive(FromRequestParts, Clone)]
|
|
#[from_request(via(Extension))]
|
|
enum Extractor {}
|
|
|
|
async fn foo(_: Extractor) {}
|
|
|
|
fn main() {
|
|
Router::<(), Body>::new().route("/", get(foo));
|
|
}
|