Type Alias next_rs::prelude::html::HtmlResult
source · pub type HtmlResult = Result<VNode, RenderError>;Expand description
An enhanced type of Html returned in suspendible function components.
Aliased Type§
enum HtmlResult {
Ok(VNode),
Err(RenderError),
}