logo
pub trait ElementVisitor {
    fn visit_child_elements(&self, element: &dyn Element);
}

Required Methods

Implementors