macro_rules! s { ($value:expr) => { ... }; }
Converts the parameter into a String by calling .to_string().
.to_string()
Unlike the s function, the value only need to have a [to_string] method. Preusmably it will return a String, but this macro doesn’t make that gaurantee.