DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / pass / associated_fn_without_self.rs
12345678910
use axum_macros::debug_handler; struct A; impl A { #[debug_handler] async fn handler() {} } fn main() {}