pub trait DisplayExt {
    fn to_string_alt(&self) -> String;
}
Expand description

Extension methods for std::fmt::Display.

Required Methods§

Formats an object with the “alternative” format ({:#}) and returns it.

Implementors§