DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / pass / impl_into_response.rs
123456789
use axum_macros::debug_handler; use axum::response::IntoResponse; #[debug_handler] async fn handler() -> impl IntoResponse { "hi!" } fn main() {}