Description
format_collect suggests to replace format! with write!.
A downside of this suggestion is that it replaces a infallible function with a fallible one (i.e., write! returns a Result, whereas format! does not).
format_push_string has a similar downside, and it was moved to restriction for this reason.
Should the same standard apply to format_collect? Or is something about its situation different?
cc: @y21, @Centri3