Trait bstring::bfmt::WriteFmt [] [src]

pub trait WriteFmt: Sized {
    fn write_fmt(self, f: &mut Formatter) -> Result;
}

Helper trait to support Formatter::write_fmt

This trait is implemented by the bstring struct Arguments and the standard struct of the same name.

Required Methods

Write formatted arguments to the formatter.

Implementors