pub trait OptimisticElement {
// Required method
fn contains(&self, target: Option<EventTarget>) -> bool;
}
Expand description
Support working with web_sys::Element
Required Methods§
Sourcefn contains(&self, target: Option<EventTarget>) -> bool
fn contains(&self, target: Option<EventTarget>) -> bool
Call [web_sys::Element::contains
], or return false
if this is not an web_sys::Element
.