pub trait DomElement {
    type Target: Into<Element> + AsRef<Element> + Clone;

    fn dom_element(&self) -> Self::Target;
}
Expand description

Get a raw Javascript, non-reactive DOM element.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§