]> git.lizzy.rs Git - rust.git/blob - src/liballoc/fmt.rs
Rollup merge of #65293 - tmandry:turbo-expander, r=matthewjasper
[rust.git] / src / liballoc / fmt.rs
1 //! Utilities for formatting and printing `String`s.
2 //!
3 //! This module contains the runtime support for the [`format!`] syntax extension.
4 //! This macro is implemented in the compiler to emit calls to this module in
5 //! order to format arguments at runtime into strings.
6 //!
7 //! # Usage
8 //!
9 //! The [`format!`] macro is intended to be familiar to those coming from C's
10 //! `printf`/`fprintf` functions or Python's `str.format` function.
11 //!
12 //! Some examples of the [`format!`] extension are:
13 //!
14 //! ```
15 //! format!("Hello");                 // => "Hello"
16 //! format!("Hello, {}!", "world");   // => "Hello, world!"
17 //! format!("The number is {}", 1);   // => "The number is 1"
18 //! format!("{:?}", (3, 4));          // => "(3, 4)"
19 //! format!("{value}", value=4);      // => "4"
20 //! format!("{} {}", 1, 2);           // => "1 2"
21 //! format!("{:04}", 42);             // => "0042" with leading zeros
22 //! ```
23 //!
24 //! From these, you can see that the first argument is a format string. It is
25 //! required by the compiler for this to be a string literal; it cannot be a
26 //! variable passed in (in order to perform validity checking). The compiler
27 //! will then parse the format string and determine if the list of arguments
28 //! provided is suitable to pass to this format string.
29 //!
30 //! To convert a single value to a string, use the [`to_string`] method. This
31 //! will use the [`Display`] formatting trait.
32 //!
33 //! ## Positional parameters
34 //!
35 //! Each formatting argument is allowed to specify which value argument it's
36 //! referencing, and if omitted it is assumed to be "the next argument". For
37 //! example, the format string `{} {} {}` would take three parameters, and they
38 //! would be formatted in the same order as they're given. The format string
39 //! `{2} {1} {0}`, however, would format arguments in reverse order.
40 //!
41 //! Things can get a little tricky once you start intermingling the two types of
42 //! positional specifiers. The "next argument" specifier can be thought of as an
43 //! iterator over the argument. Each time a "next argument" specifier is seen,
44 //! the iterator advances. This leads to behavior like this:
45 //!
46 //! ```
47 //! format!("{1} {} {0} {}", 1, 2); // => "2 1 1 2"
48 //! ```
49 //!
50 //! The internal iterator over the argument has not been advanced by the time
51 //! the first `{}` is seen, so it prints the first argument. Then upon reaching
52 //! the second `{}`, the iterator has advanced forward to the second argument.
53 //! Essentially, parameters which explicitly name their argument do not affect
54 //! parameters which do not name an argument in terms of positional specifiers.
55 //!
56 //! A format string is required to use all of its arguments, otherwise it is a
57 //! compile-time error. You may refer to the same argument more than once in the
58 //! format string.
59 //!
60 //! ## Named parameters
61 //!
62 //! Rust itself does not have a Python-like equivalent of named parameters to a
63 //! function, but the [`format!`] macro is a syntax extension which allows it to
64 //! leverage named parameters. Named parameters are listed at the end of the
65 //! argument list and have the syntax:
66 //!
67 //! ```text
68 //! identifier '=' expression
69 //! ```
70 //!
71 //! For example, the following [`format!`] expressions all use named argument:
72 //!
73 //! ```
74 //! format!("{argument}", argument = "test");   // => "test"
75 //! format!("{name} {}", 1, name = 2);          // => "2 1"
76 //! format!("{a} {c} {b}", a="a", b='b', c=3);  // => "a 3 b"
77 //! ```
78 //!
79 //! It is not valid to put positional parameters (those without names) after
80 //! arguments which have names. Like with positional parameters, it is not
81 //! valid to provide named parameters that are unused by the format string.
82 //!
83 //! # Formatting Parameters
84 //!
85 //! Each argument being formatted can be transformed by a number of formatting
86 //! parameters (corresponding to `format_spec` in the syntax above). These
87 //! parameters affect the string representation of what's being formatted.
88 //!
89 //! ## Fill/Alignment
90 //!
91 //! The fill character is provided normally in conjunction with the
92 //! [`width`](#width)
93 //! parameter. This indicates that if the value being formatted is smaller than
94 //! `width` some extra characters will be printed around it. The extra
95 //! characters are specified by `fill`, and the alignment can be one of the
96 //! following options:
97 //!
98 //! * `<` - the argument is left-aligned in `width` columns
99 //! * `^` - the argument is center-aligned in `width` columns
100 //! * `>` - the argument is right-aligned in `width` columns
101 //!
102 //! Note that alignment may not be implemented by some types. In particular, it
103 //! is not generally implemented for the `Debug` trait.  A good way to ensure
104 //! padding is applied is to format your input, then use this resulting string
105 //! to pad your output.
106 //!
107 //! ## Sign/`#`/`0`
108 //!
109 //! These can all be interpreted as flags for a particular formatter.
110 //!
111 //! * `+` - This is intended for numeric types and indicates that the sign
112 //!         should always be printed. Positive signs are never printed by
113 //!         default, and the negative sign is only printed by default for the
114 //!         `Signed` trait. This flag indicates that the correct sign (`+` or `-`)
115 //!         should always be printed.
116 //! * `-` - Currently not used
117 //! * `#` - This flag is indicates that the "alternate" form of printing should
118 //!         be used. The alternate forms are:
119 //!     * `#?` - pretty-print the [`Debug`] formatting
120 //!     * `#x` - precedes the argument with a `0x`
121 //!     * `#X` - precedes the argument with a `0x`
122 //!     * `#b` - precedes the argument with a `0b`
123 //!     * `#o` - precedes the argument with a `0o`
124 //! * `0` - This is used to indicate for integer formats that the padding should
125 //!         both be done with a `0` character as well as be sign-aware. A format
126 //!         like `{:08}` would yield `00000001` for the integer `1`, while the
127 //!         same format would yield `-0000001` for the integer `-1`. Notice that
128 //!         the negative version has one fewer zero than the positive version.
129 //!         Note that padding zeroes are always placed after the sign (if any)
130 //!         and before the digits. When used together with the `#` flag, a similar
131 //!         rule applies: padding zeroes are inserted after the prefix but before
132 //!         the digits.
133 //!
134 //! ## Width
135 //!
136 //! This is a parameter for the "minimum width" that the format should take up.
137 //! If the value's string does not fill up this many characters, then the
138 //! padding specified by fill/alignment will be used to take up the required
139 //! space.
140 //!
141 //! The default [fill/alignment](#fillalignment) for non-numerics is a space and
142 //! left-aligned. The
143 //! defaults for numeric formatters is also a space but with right-alignment. If
144 //! the `0` flag is specified for numerics, then the implicit fill character is
145 //! `0`.
146 //!
147 //! The value for the width can also be provided as a [`usize`] in the list of
148 //! parameters by using the dollar syntax indicating that the second argument is
149 //! a [`usize`] specifying the width, for example:
150 //!
151 //! ```
152 //! // All of these print "Hello x    !"
153 //! println!("Hello {:5}!", "x");
154 //! println!("Hello {:1$}!", "x", 5);
155 //! println!("Hello {1:0$}!", 5, "x");
156 //! println!("Hello {:width$}!", "x", width = 5);
157 //! ```
158 //!
159 //! Referring to an argument with the dollar syntax does not affect the "next
160 //! argument" counter, so it's usually a good idea to refer to arguments by
161 //! position, or use named arguments.
162 //!
163 //! ## Precision
164 //!
165 //! For non-numeric types, this can be considered a "maximum width". If the resulting string is
166 //! longer than this width, then it is truncated down to this many characters and that truncated
167 //! value is emitted with proper `fill`, `alignment` and `width` if those parameters are set.
168 //!
169 //! For integral types, this is ignored.
170 //!
171 //! For floating-point types, this indicates how many digits after the decimal point should be
172 //! printed.
173 //!
174 //! There are three possible ways to specify the desired `precision`:
175 //!
176 //! 1. An integer `.N`:
177 //!
178 //!    the integer `N` itself is the precision.
179 //!
180 //! 2. An integer or name followed by dollar sign `.N$`:
181 //!
182 //!    use format *argument* `N` (which must be a `usize`) as the precision.
183 //!
184 //! 3. An asterisk `.*`:
185 //!
186 //!    `.*` means that this `{...}` is associated with *two* format inputs rather than one: the
187 //!    first input holds the `usize` precision, and the second holds the value to print. Note that
188 //!    in this case, if one uses the format string `{<arg>:<spec>.*}`, then the `<arg>` part refers
189 //!    to the *value* to print, and the `precision` must come in the input preceding `<arg>`.
190 //!
191 //! For example, the following calls all print the same thing `Hello x is 0.01000`:
192 //!
193 //! ```
194 //! // Hello {arg 0 ("x")} is {arg 1 (0.01) with precision specified inline (5)}
195 //! println!("Hello {0} is {1:.5}", "x", 0.01);
196 //!
197 //! // Hello {arg 1 ("x")} is {arg 2 (0.01) with precision specified in arg 0 (5)}
198 //! println!("Hello {1} is {2:.0$}", 5, "x", 0.01);
199 //!
200 //! // Hello {arg 0 ("x")} is {arg 2 (0.01) with precision specified in arg 1 (5)}
201 //! println!("Hello {0} is {2:.1$}", "x", 5, 0.01);
202 //!
203 //! // Hello {next arg ("x")} is {second of next two args (0.01) with precision
204 //! //                          specified in first of next two args (5)}
205 //! println!("Hello {} is {:.*}",    "x", 5, 0.01);
206 //!
207 //! // Hello {next arg ("x")} is {arg 2 (0.01) with precision
208 //! //                          specified in its predecessor (5)}
209 //! println!("Hello {} is {2:.*}",   "x", 5, 0.01);
210 //!
211 //! // Hello {next arg ("x")} is {arg "number" (0.01) with precision specified
212 //! //                          in arg "prec" (5)}
213 //! println!("Hello {} is {number:.prec$}", "x", prec = 5, number = 0.01);
214 //! ```
215 //!
216 //! While these:
217 //!
218 //! ```
219 //! println!("{}, `{name:.*}` has 3 fractional digits", "Hello", 3, name=1234.56);
220 //! println!("{}, `{name:.*}` has 3 characters", "Hello", 3, name="1234.56");
221 //! println!("{}, `{name:>8.*}` has 3 right-aligned characters", "Hello", 3, name="1234.56");
222 //! ```
223 //!
224 //! print two significantly different things:
225 //!
226 //! ```text
227 //! Hello, `1234.560` has 3 fractional digits
228 //! Hello, `123` has 3 characters
229 //! Hello, `     123` has 3 right-aligned characters
230 //! ```
231 //!
232 //! # Escaping
233 //!
234 //! The literal characters `{` and `}` may be included in a string by preceding
235 //! them with the same character. For example, the `{` character is escaped with
236 //! `{{` and the `}` character is escaped with `}}`.
237 //!
238 //! # Syntax
239 //!
240 //! To summarize, you can find the full grammar of format strings.
241 //! The syntax for the formatting language used is drawn from other languages,
242 //! so it should not be too alien. Arguments are formatted with Python-like
243 //! syntax, meaning that arguments are surrounded by `{}` instead of the C-like
244 //! `%`. The actual grammar for the formatting syntax is:
245 //!
246 //! ```text
247 //! format_string := <text> [ maybe-format <text> ] *
248 //! maybe-format := '{' '{' | '}' '}' | <format>
249 //! format := '{' [ argument ] [ ':' format_spec ] '}'
250 //! argument := integer | identifier
251 //!
252 //! format_spec := [[fill]align][sign]['#']['0'][width]['.' precision][type]
253 //! fill := character
254 //! align := '<' | '^' | '>'
255 //! sign := '+' | '-'
256 //! width := count
257 //! precision := count | '*'
258 //! type := identifier | '?' | ''
259 //! count := parameter | integer
260 //! parameter := argument '$'
261 //! ```
262 //!
263 //! # Formatting traits
264 //!
265 //! When requesting that an argument be formatted with a particular type, you
266 //! are actually requesting that an argument ascribes to a particular trait.
267 //! This allows multiple actual types to be formatted via `{:x}` (like [`i8`] as
268 //! well as [`isize`]). The current mapping of types to traits is:
269 //!
270 //! * *nothing* ⇒ [`Display`]
271 //! * `?` ⇒ [`Debug`]
272 //! * `x?` ⇒ [`Debug`] with lower-case hexadecimal integers
273 //! * `X?` ⇒ [`Debug`] with upper-case hexadecimal integers
274 //! * `o` ⇒ [`Octal`](trait.Octal.html)
275 //! * `x` ⇒ [`LowerHex`](trait.LowerHex.html)
276 //! * `X` ⇒ [`UpperHex`](trait.UpperHex.html)
277 //! * `p` ⇒ [`Pointer`](trait.Pointer.html)
278 //! * `b` ⇒ [`Binary`]
279 //! * `e` ⇒ [`LowerExp`](trait.LowerExp.html)
280 //! * `E` ⇒ [`UpperExp`](trait.UpperExp.html)
281 //!
282 //! What this means is that any type of argument which implements the
283 //! [`fmt::Binary`][`Binary`] trait can then be formatted with `{:b}`. Implementations
284 //! are provided for these traits for a number of primitive types by the
285 //! standard library as well. If no format is specified (as in `{}` or `{:6}`),
286 //! then the format trait used is the [`Display`] trait.
287 //!
288 //! When implementing a format trait for your own type, you will have to
289 //! implement a method of the signature:
290 //!
291 //! ```
292 //! # #![allow(dead_code)]
293 //! # use std::fmt;
294 //! # struct Foo; // our custom type
295 //! # impl fmt::Display for Foo {
296 //! fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
297 //! # write!(f, "testing, testing")
298 //! # } }
299 //! ```
300 //!
301 //! Your type will be passed as `self` by-reference, and then the function
302 //! should emit output into the `f.buf` stream. It is up to each format trait
303 //! implementation to correctly adhere to the requested formatting parameters.
304 //! The values of these parameters will be listed in the fields of the
305 //! [`Formatter`] struct. In order to help with this, the [`Formatter`] struct also
306 //! provides some helper methods.
307 //!
308 //! Additionally, the return value of this function is [`fmt::Result`] which is a
309 //! type alias of [`Result`]`<(), `[`std::fmt::Error`]`>`. Formatting implementations
310 //! should ensure that they propagate errors from the [`Formatter`][`Formatter`] (e.g., when
311 //! calling [`write!`]). However, they should never return errors spuriously. That
312 //! is, a formatting implementation must and may only return an error if the
313 //! passed-in [`Formatter`] returns an error. This is because, contrary to what
314 //! the function signature might suggest, string formatting is an infallible
315 //! operation. This function only returns a result because writing to the
316 //! underlying stream might fail and it must provide a way to propagate the fact
317 //! that an error has occurred back up the stack.
318 //!
319 //! An example of implementing the formatting traits would look
320 //! like:
321 //!
322 //! ```
323 //! use std::fmt;
324 //!
325 //! #[derive(Debug)]
326 //! struct Vector2D {
327 //!     x: isize,
328 //!     y: isize,
329 //! }
330 //!
331 //! impl fmt::Display for Vector2D {
332 //!     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
333 //!         // The `f` value implements the `Write` trait, which is what the
334 //!         // write! macro is expecting. Note that this formatting ignores the
335 //!         // various flags provided to format strings.
336 //!         write!(f, "({}, {})", self.x, self.y)
337 //!     }
338 //! }
339 //!
340 //! // Different traits allow different forms of output of a type. The meaning
341 //! // of this format is to print the magnitude of a vector.
342 //! impl fmt::Binary for Vector2D {
343 //!     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
344 //!         let magnitude = (self.x * self.x + self.y * self.y) as f64;
345 //!         let magnitude = magnitude.sqrt();
346 //!
347 //!         // Respect the formatting flags by using the helper method
348 //!         // `pad_integral` on the Formatter object. See the method
349 //!         // documentation for details, and the function `pad` can be used
350 //!         // to pad strings.
351 //!         let decimals = f.precision().unwrap_or(3);
352 //!         let string = format!("{:.*}", decimals, magnitude);
353 //!         f.pad_integral(true, "", &string)
354 //!     }
355 //! }
356 //!
357 //! fn main() {
358 //!     let myvector = Vector2D { x: 3, y: 4 };
359 //!
360 //!     println!("{}", myvector);       // => "(3, 4)"
361 //!     println!("{:?}", myvector);     // => "Vector2D {x: 3, y:4}"
362 //!     println!("{:10.3b}", myvector); // => "     5.000"
363 //! }
364 //! ```
365 //!
366 //! ### `fmt::Display` vs `fmt::Debug`
367 //!
368 //! These two formatting traits have distinct purposes:
369 //!
370 //! - [`fmt::Display`][`Display`] implementations assert that the type can be faithfully
371 //!   represented as a UTF-8 string at all times. It is **not** expected that
372 //!   all types implement the [`Display`] trait.
373 //! - [`fmt::Debug`][`Debug`] implementations should be implemented for **all** public types.
374 //!   Output will typically represent the internal state as faithfully as possible.
375 //!   The purpose of the [`Debug`] trait is to facilitate debugging Rust code. In
376 //!   most cases, using `#[derive(Debug)]` is sufficient and recommended.
377 //!
378 //! Some examples of the output from both traits:
379 //!
380 //! ```
381 //! assert_eq!(format!("{} {:?}", 3, 4), "3 4");
382 //! assert_eq!(format!("{} {:?}", 'a', 'b'), "a 'b'");
383 //! assert_eq!(format!("{} {:?}", "foo\n", "bar\n"), "foo\n \"bar\\n\"");
384 //! ```
385 //!
386 //! # Related macros
387 //!
388 //! There are a number of related macros in the [`format!`] family. The ones that
389 //! are currently implemented are:
390 //!
391 //! ```ignore (only-for-syntax-highlight)
392 //! format!      // described above
393 //! write!       // first argument is a &mut io::Write, the destination
394 //! writeln!     // same as write but appends a newline
395 //! print!       // the format string is printed to the standard output
396 //! println!     // same as print but appends a newline
397 //! eprint!      // the format string is printed to the standard error
398 //! eprintln!    // same as eprint but appends a newline
399 //! format_args! // described below.
400 //! ```
401 //!
402 //! ### `write!`
403 //!
404 //! This and [`writeln!`] are two macros which are used to emit the format string
405 //! to a specified stream. This is used to prevent intermediate allocations of
406 //! format strings and instead directly write the output. Under the hood, this
407 //! function is actually invoking the [`write_fmt`] function defined on the
408 //! [`std::io::Write`] trait. Example usage is:
409 //!
410 //! ```
411 //! # #![allow(unused_must_use)]
412 //! use std::io::Write;
413 //! let mut w = Vec::new();
414 //! write!(&mut w, "Hello {}!", "world");
415 //! ```
416 //!
417 //! ### `print!`
418 //!
419 //! This and [`println!`] emit their output to stdout. Similarly to the [`write!`]
420 //! macro, the goal of these macros is to avoid intermediate allocations when
421 //! printing output. Example usage is:
422 //!
423 //! ```
424 //! print!("Hello {}!", "world");
425 //! println!("I have a newline {}", "character at the end");
426 //! ```
427 //! ### `eprint!`
428 //!
429 //! The [`eprint!`] and [`eprintln!`] macros are identical to
430 //! [`print!`] and [`println!`], respectively, except they emit their
431 //! output to stderr.
432 //!
433 //! ### `format_args!`
434 //!
435 //! This is a curious macro which is used to safely pass around
436 //! an opaque object describing the format string. This object
437 //! does not require any heap allocations to create, and it only
438 //! references information on the stack. Under the hood, all of
439 //! the related macros are implemented in terms of this. First
440 //! off, some example usage is:
441 //!
442 //! ```
443 //! # #![allow(unused_must_use)]
444 //! use std::fmt;
445 //! use std::io::{self, Write};
446 //!
447 //! let mut some_writer = io::stdout();
448 //! write!(&mut some_writer, "{}", format_args!("print with a {}", "macro"));
449 //!
450 //! fn my_fmt_fn(args: fmt::Arguments) {
451 //!     write!(&mut io::stdout(), "{}", args);
452 //! }
453 //! my_fmt_fn(format_args!(", or a {} too", "function"));
454 //! ```
455 //!
456 //! The result of the [`format_args!`] macro is a value of type [`fmt::Arguments`].
457 //! This structure can then be passed to the [`write`] and [`format`] functions
458 //! inside this module in order to process the format string.
459 //! The goal of this macro is to even further prevent intermediate allocations
460 //! when dealing formatting strings.
461 //!
462 //! For example, a logging library could use the standard formatting syntax, but
463 //! it would internally pass around this structure until it has been determined
464 //! where output should go to.
465 //!
466 //! [`usize`]: ../../std/primitive.usize.html
467 //! [`isize`]: ../../std/primitive.isize.html
468 //! [`i8`]: ../../std/primitive.i8.html
469 //! [`Display`]: trait.Display.html
470 //! [`Binary`]: trait.Binary.html
471 //! [`fmt::Result`]: type.Result.html
472 //! [`Result`]: ../../std/result/enum.Result.html
473 //! [`std::fmt::Error`]: struct.Error.html
474 //! [`Formatter`]: struct.Formatter.html
475 //! [`write!`]: ../../std/macro.write.html
476 //! [`Debug`]: trait.Debug.html
477 //! [`format!`]: ../../std/macro.format.html
478 //! [`to_string`]: ../../std/string/trait.ToString.html
479 //! [`writeln!`]: ../../std/macro.writeln.html
480 //! [`write_fmt`]: ../../std/io/trait.Write.html#method.write_fmt
481 //! [`std::io::Write`]: ../../std/io/trait.Write.html
482 //! [`print!`]: ../../std/macro.print.html
483 //! [`println!`]: ../../std/macro.println.html
484 //! [`eprint!`]: ../../std/macro.eprint.html
485 //! [`eprintln!`]: ../../std/macro.eprintln.html
486 //! [`write!`]: ../../std/macro.write.html
487 //! [`format_args!`]: ../../std/macro.format_args.html
488 //! [`fmt::Arguments`]: struct.Arguments.html
489 //! [`write`]: fn.write.html
490 //! [`format`]: fn.format.html
491
492 #![stable(feature = "rust1", since = "1.0.0")]
493
494 #[unstable(feature = "fmt_internals", issue = "0")]
495 pub use core::fmt::rt;
496 #[stable(feature = "rust1", since = "1.0.0")]
497 pub use core::fmt::{Formatter, Result, Write};
498 #[stable(feature = "rust1", since = "1.0.0")]
499 pub use core::fmt::{Binary, Octal};
500 #[stable(feature = "rust1", since = "1.0.0")]
501 pub use core::fmt::{Debug, Display};
502 #[stable(feature = "rust1", since = "1.0.0")]
503 pub use core::fmt::{LowerHex, Pointer, UpperHex};
504 #[stable(feature = "rust1", since = "1.0.0")]
505 pub use core::fmt::{LowerExp, UpperExp};
506 #[stable(feature = "rust1", since = "1.0.0")]
507 pub use core::fmt::Error;
508 #[stable(feature = "rust1", since = "1.0.0")]
509 pub use core::fmt::{write, ArgumentV1, Arguments};
510 #[stable(feature = "rust1", since = "1.0.0")]
511 pub use core::fmt::{DebugList, DebugMap, DebugSet, DebugStruct, DebugTuple};
512 #[stable(feature = "fmt_flags_align", since = "1.28.0")]
513 pub use core::fmt::{Alignment};
514
515 use crate::string;
516
517 /// The `format` function takes an [`Arguments`] struct and returns the resulting
518 /// formatted string.
519 ///
520 /// The [`Arguments`] instance can be created with the [`format_args!`] macro.
521 ///
522 /// # Examples
523 ///
524 /// Basic usage:
525 ///
526 /// ```
527 /// use std::fmt;
528 ///
529 /// let s = fmt::format(format_args!("Hello, {}!", "world"));
530 /// assert_eq!(s, "Hello, world!");
531 /// ```
532 ///
533 /// Please note that using [`format!`] might be preferable.
534 /// Example:
535 ///
536 /// ```
537 /// let s = format!("Hello, {}!", "world");
538 /// assert_eq!(s, "Hello, world!");
539 /// ```
540 ///
541 /// [`Arguments`]: struct.Arguments.html
542 /// [`format_args!`]: ../../std/macro.format_args.html
543 /// [`format!`]: ../../std/macro.format.html
544 #[stable(feature = "rust1", since = "1.0.0")]
545 pub fn format(args: Arguments<'_>) -> string::String {
546     let capacity = args.estimated_capacity();
547     let mut output = string::String::with_capacity(capacity);
548     output
549         .write_fmt(args)
550         .expect("a formatting trait implementation returned an error");
551     output
552 }