1 2 3 4 5
use web_sys::HtmlElement; pub type DomRef = Option<HtmlElement>; pub type DomRefWithPath<'a> = (Vec<usize>, &'a mut DomRef);
1 2 3 4 5
use web_sys::HtmlElement; pub type DomRef = Option<HtmlElement>; pub type DomRefWithPath<'a> = (Vec<usize>, &'a mut DomRef);