1 2 3 4 5 6 7 8
#[allow(unused_macros)] /// Convret &strt to String and vice versa macro_rules! string { ($x:expr) => { // <1> String::from(stringify!($x)) // <2> }; }