pub trait DisplayExt {
// Required method
fn to_string_ext(&self) -> String;
}
Expand description
Allows to implement to_string
for types that does not have it.
Required Methods§
Sourcefn to_string_ext(&self) -> String
fn to_string_ext(&self) -> String
to_string
for types that does not have it implemented.