macro_rules! format_small_string {
($($args:tt)+) => { ... };
}Expand description
Formats arguments into a small string with an inline byte capacity.
Arguments are forwarded to format_small_string without an intermediate
String allocation. Inline capacity is inferred from the expected type at
the call site, and output beyond it spills to the heap.