DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / pass / impl_future.rs
123456789
use axum_macros::debug_handler; use std::future::Future; #[debug_handler] fn handler() -> impl Future<Output = ()> { async {} } fn main() {}