mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-21 00:00:14 +02:00
* 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 <[email protected]> Co-authored-by: David Pedersen <[email protected]>
13 lines
227 B
Rust
13 lines
227 B
Rust
use axum_macros::FromRequestParts;
|
|
|
|
#[derive(FromRequestParts)]
|
|
struct Extractor(axum::http::HeaderMap, axum::http::Method);
|
|
|
|
fn assert_from_request()
|
|
where
|
|
Extractor: axum::extract::FromRequestParts<()>,
|
|
{
|
|
}
|
|
|
|
fn main() {}
|