use axum_macros::FromRequest; use axum::{ extract::{FromRef, State}, Router, routing::get, }; fn main() { let _: Router = Router::with_state(AppState::default()) .route("/b", get(|_: Extractor| async {})); } #[derive(FromRequest)] #[from_request(state(AppState))] struct Extractor { app_state: State, one: State, two: State, other_extractor: String, } #[derive(Clone, Default)] struct AppState { one: One, two: Two, } #[derive(Clone, Default)] struct One {} impl FromRef for One { fn from_ref(input: &AppState) -> Self { input.one.clone() } } #[derive(Clone, Default)] struct Two {} impl FromRef for Two { fn from_ref(input: &AppState) -> Self { input.two.clone() } }