use axum::extract::{FromRef, FromRequest, Request}; use axum_macros::debug_handler; #[debug_handler(state = AppState)] async fn handler(_: A) {} #[derive(Clone)] struct AppState; struct A; impl FromRequest for A where S: Send + Sync, AppState: FromRef, { type Rejection = (); async fn from_request(_req: Request, _state: &S) -> Result { unimplemented!() } } fn main() {}