Trait WriteFmt

Source
pub trait WriteFmt: Write<WriteError = RtError> {
    // Provided method
    fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()> { ... }
}
Expand description

Wraper trait to extent genio’s Write to be used by write! marco

Provided Methods§

Source

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()>

Implementors§