DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.8.4-2 / axum-macros / tests / debug_handler / pass / multiple_extractors.rs
1234567
use axum::http::{Method, Uri}; use axum_macros::debug_handler; #[debug_handler] async fn handler(_one: Method, _two: Uri, _three: String) {} fn main() {}