Type Definition dioxus_core::Element

source ·
pub type Element<'a> = Option<VNode<'a>>;
Expand description

An Element is a possibly-none VNode created by calling render on Scope or ScopeState.

An Errored Element will propagate the error to the nearest error boundary.

Trait Implementations§

Consume this item along with a scopestate and produce a DynamicNode Read more