Struct core::fmt::builders::PadAdapter [] [src]

struct PadAdapter<'a, 'b> {
    fmt: &'a mut Formatter<'b>,
    on_newline: bool,
}

Fields

fmt
on_newline

Methods

impl<'a, 'b> PadAdapter<'a, 'b>

fn new(fmt: &'a mut Formatter<'b>) -> PadAdapter<'a, 'b>

Trait Implementations

impl<'a, 'b> Write for PadAdapter<'a, 'b>

fn write_str(&mut self, s: &str) -> Result

fn write_char(&mut self, c: char) -> Result

fn write_fmt(&mut self, args: Arguments) -> Result