pub trait Write {
// Required methods
fn write_char(&self, c: char);
fn write_fmt(&self, args: Arguments<'_>) -> Result;
fn flush(&self);
}Expand description
Console write functions.
Required Methods§
Sourcefn write_char(&self, c: char)
fn write_char(&self, c: char)
Write a single character.