pub trait HtmlFormat<'e> {
type Encoded: Display;
// Required method
fn html_format<'f>(&'f self) -> Self::Encoded
where 'f: 'e;
}Required Associated Types§
Required Methods§
fn html_format<'f>(&'f self) -> Self::Encodedwhere
'f: 'e,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".