pub trait AsciiDisplay { // Required method fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>; }
Like std::fmt::Display, but the format should use ASCII characters only
std::fmt::Display
Format the value with the given formatter