Skip to main content

command_str

Macro command_str 

Source
command_str!() { /* proc-macro */ }
Expand description

Rust compiler build version as &'static str.

ยงExample

let magic_number: &str = compile_time::command_str!("echo", "42");
assert_eq!(magic_number, "42\n");