pub trait Html: Debug {
    // Required method
    fn to_html_string(&self) -> String;
}

Required Methods§

Trait Implementations§

source§

impl Display for dyn Html

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementations on Foreign Types§

source§

impl Html for &str

source§

impl Html for String

Implementors§