macro_rules! im_str {
($e:literal $(,)?) => { ... };
($e:literal, $($arg:tt)+) => { ... };
}👎Deprecated: all functions take AsRef<str> now – use inline strings or
format insteadmacro_rules! im_str {
($e:literal $(,)?) => { ... };
($e:literal, $($arg:tt)+) => { ... };
}format instead