pub trait FancyDisplay: Display {
// Required method
fn to_fancy_string(&self) -> String;
}Expand description
Display things and allow the use of fancy non ascii characters
Required Methods§
Sourcefn to_fancy_string(&self) -> String
fn to_fancy_string(&self) -> String
Equivalent of .to_string() but then fancier!