use axum_macros::debug_handler; use axum::extract::State; #[debug_handler] async fn handler(_: State) {} #[debug_handler] async fn handler_2(_: axum::extract::State) {} #[debug_handler] async fn handler_3( _: axum::extract::State, _: axum::extract::State, ) {} #[debug_handler] async fn handler_4( _: State, _: State, ) {} #[debug_handler] async fn handler_5( _: axum::extract::State, _: State, ) {} #[derive(Clone)] struct AppState; fn main() {}