Trait powerfmt::ext::FormatterExt
source · pub trait FormatterExt: Sealed {
// Required method
fn pad_with_width(&mut self, width: usize, args: Arguments<'_>) -> Result;
}
Expand description
An extension trait for core::fmt::Formatter
.
Required Methods§
sourcefn pad_with_width(&mut self, width: usize, args: Arguments<'_>) -> Result
fn pad_with_width(&mut self, width: usize, args: Arguments<'_>) -> Result
Writes the given arguments to the formatter, padding them with the given width. If width
is incorrect, the resulting output will not be the requested width.