Trait IntoHtmlResult

Source
pub trait IntoHtmlResult: Sealed {
    // Required method
    fn into_html_result(self) -> Result<VNode, RenderError>;
}
Expand description

A trait to translate into a HtmlResult.

Required Methods§

Source

fn into_html_result(self) -> Result<VNode, RenderError>

Performs the conversion.

Implementations on Foreign Types§

Source§

impl IntoHtmlResult for Result<VNode, RenderError>

Implementors§