Trait silkenweb::node::element::ChildElement

source ·
pub trait ChildElement<D: Dom = DefaultDom>: Into<GenericElement<D, Const>> + Into<Node<D>> + Value + 'static { }
Expand description

Trait alias for elements that can be used as a child

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<D, T> ChildElement<D> for T
where D: Dom, T: Into<GenericElement<D, Const>> + Into<Node<D>> + Value + 'static,