DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / fail / json_not_deserialize.rs
123456789
use axum::Json; use axum_macros::debug_handler; struct Struct {} #[debug_handler] async fn handler(_foo: Json<Struct>) {} fn main() {}