macro_rules! uformat {
($fmt:expr) => { ... };
($fmt:expr, $($args:tt)*) => { ... };
}
Expand description
A macro for creating UniqueString
instances from format arguments.
This macro works similarly to format!
but returns a UniqueString
instead of a String
.
It attempts to optimize for 'static
string literals.