Type Alias HtmlResult

Source
pub type HtmlResult = Result<VNode, RenderError>;
Expand description

An enhanced type of Html returned in suspendible function components.

Aliased Type§

pub enum HtmlResult {
    Ok(VNode),
    Err(RenderError),
}

Variants§

§1.0.0

Ok(VNode)

Contains the success value

§1.0.0

Err(RenderError)

Contains the error value