Macro s

Source
macro_rules! s {
    ($value:expr) => { ... };
}
Expand description

Converts the parameter into a String by calling .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.