Trait ToHtmlString

Source
pub trait ToHtmlString {
    // Required method
    fn to_html_string(self) -> Result<String, Error>;
}
Expand description

Something that can be converted into an HTML string.

Required Methods§

Source

fn to_html_string(self) -> Result<String, Error>

Converts self into an HTML string.

Implementors§

Source§

impl<H: Html> ToHtmlString for H