Structs
Functions
-
-
fn format_integer<T, F>(val: T, radix: u16, pad: usize, fmt: &mut F) -> Result
T: IntegerF: Formatter<F> -
-
fn write_fmt<F>(parts: &[&dyn Formattable<Self, F>], f: &mut F) -> Result
F: Formatter<F>
Macros
Receiver macro for format_args that constructs an array of type-erased pointers to
to the formatting args, which can then be printed with write_fmt.
Receiver macro for format_args that constructs a tuple of the formatting args.
Receiver macro for format_args that constructs a fold expression chain that writes
each argument into the formatter and bails early if an error occurs. This is the
default receiver for format_args.