macro_rules! s { ($arg:expr) => { ... }; }
Makes the string argument a String, by using String::from() (see String for details).
String::from()
let text: String = s!("Hello");