Macro LABEL

Source
macro_rules! LABEL {
    ($($x:expr => $y:expr), +) => { ... };
}
Expand description
let label = LABEL!["key" => "value"];
assert_eq!(label.to_string(), r#"LABEL key="value""#);