Skip to main content

command_bytes

Macro command_bytes 

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

Rust compiler build version as &'static str.

ยงExample

let magic_number: &[u8] = compile_time::command_bytes!("echo", "42");
assert_eq!(magic_number, b"42\n");