pub fn try_format_array_string<const CAP: usize>(
args: Arguments<'_>,
) -> Result<ArrayString<CAP>>Expand description
Formats arguments into an array string, propagating any formatting error.
Output is confined to the stack. Exceeding CAP bytes yields a formatting
error, indistinguishable from a failure in an argument’s Display
implementation.