AsciiDisplay

Trait AsciiDisplay 

Source
pub trait AsciiDisplay {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description

Like std::fmt::Display, but the format should use ASCII characters only

Required Methods§

Source

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Format the value with the given formatter

Implementors§