1 2 3 4 5 6 7 8 9
use axum::Json; use axum_macros::debug_handler; struct Struct {} #[debug_handler] async fn handler(_foo: Json<Struct>) {} fn main() {}