macro_rules! format_array_string {
($($args:tt)+) => { ... };
}Expand description
Formats arguments into an array string with constant byte capacity.
Arguments are forwarded to format_array_string without any allocation.
Capacity is inferred from the expected type at the call site, and output
beyond it panics.