DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / debug_handler / pass / mut_extractor.rs
123456789
use axum_macros::debug_handler; #[debug_handler] async fn handler(mut foo: String) -> String { foo += "bar"; foo } fn main() {}