DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / pass / ready.rs
123456789
use axum_macros::debug_handler; use std::future::{Ready, ready}; #[debug_handler] fn handler() -> Ready<()> { ready(()) } fn main() {}