pub trait ToHtml {
    fn to_html(self, ctx: &Ctx) -> String;
}
Expand description

Let data structure transform to HTML.

Required Methods§

Consume option self into HTML string.

Warn: The returned string might be only a partial of HTML.

Implementors§