pub type Element = Result<VNode, RenderError>;Expand description
An Element is a possibly-none VNode created by calling render on ScopeId or ScopeState.
An Errored Element will propagate the error to the nearest error boundary.
Aliased Type§
pub enum Element {
Ok(VNode),
Err(RenderError),
}Variants§
Trait Implementations§
Source§impl IntoDynNode for &Element
impl IntoDynNode for &Element
Source§fn into_dyn_node(self) -> DynamicNode
fn into_dyn_node(self) -> DynamicNode
Consume this item and produce a DynamicNode
Source§impl IntoDynNode for Element
impl IntoDynNode for Element
Source§fn into_dyn_node(self) -> DynamicNode
fn into_dyn_node(self) -> DynamicNode
Consume this item and produce a DynamicNode