mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
4e4c29175f
Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Michael Scofield <mscofield0@tutanota.com>
18 lines
313 B
Rust
18 lines
313 B
Rust
use axum_macros::FromRequest;
|
|
use axum::extract::State;
|
|
|
|
#[derive(FromRequest)]
|
|
struct Extractor {
|
|
inner_state: State<AppState>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct AppState {}
|
|
|
|
fn assert_from_request()
|
|
where
|
|
Extractor: axum::extract::FromRequest<AppState, Rejection = axum::response::Response>,
|
|
{
|
|
}
|
|
|
|
fn main() {}
|