Type Definition dioxus_core::Element[][src]

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

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

Any None Element will automatically be coerced into a placeholder VNode with the VNode::Placeholder variant.