macro_rules! format_string {
($($val:expr),* $(,)*) => { ... };
}Expand description
Create an ErrorFormatObj::FormatString from multiple values.
Each value is converted to a string and wrapped in ErrorFormatObj::String,
then combined into a FormatString that concatenates without separators.