pub trait HtmlFormat<'e> {
    type Encoded: Display;

    fn html_format<'f>(&'f self) -> Self::Encoded
    where
        'f: 'e
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors