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