pub trait HtmlVisitorMut {
    // Required method
    fn visit_element_mut(&mut self, table: &mut HtmlElement) -> bool;
}
Expand description

A visitor which traverses a HTML elements tree, while mutating the tree.

Required Methods§

source

fn visit_element_mut(&mut self, table: &mut HtmlElement) -> bool

Visit an element.

Implementations on Foreign Types§

source§

impl<T> HtmlVisitorMut for &mut T
where T: HtmlVisitorMut,

source§

fn visit_element_mut(&mut self, table: &mut HtmlElement) -> bool

Implementors§