pub type Element = Result<VNode, RenderError>;Available on crate feature
prelude only.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),
}