pub trait HtmlFormat<'e> {
type Encoded: Display;
// Required method
fn html_format<'f: 'e>(&'f self) -> Self::Encoded;
}pub trait HtmlFormat<'e> {
type Encoded: Display;
// Required method
fn html_format<'f: 'e>(&'f self) -> Self::Encoded;
}