pub trait VisitAll {
Show 19 methods fn visit_atom(&mut self, n: &Atom) { ... } fn visit_attribute(&mut self, n: &Attribute) { ... } fn visit_attributes(&mut self, n: &[Attribute]) { ... } fn visit_child(&mut self, n: &Child) { ... } fn visit_children(&mut self, n: &[Child]) { ... } fn visit_comment(&mut self, n: &Comment) { ... } fn visit_document(&mut self, n: &Document) { ... } fn visit_document_fragment(&mut self, n: &DocumentFragment) { ... } fn visit_document_mode(&mut self, n: &DocumentMode) { ... } fn visit_document_type(&mut self, n: &DocumentType) { ... } fn visit_element(&mut self, n: &Element) { ... } fn visit_js_word(&mut self, n: &JsWord) { ... } fn visit_namespace(&mut self, n: &Namespace) { ... } fn visit_opt_atom(&mut self, n: Option<&Atom>) { ... } fn visit_opt_document_fragment(&mut self, n: Option<&DocumentFragment>) { ... } fn visit_opt_js_word(&mut self, n: Option<&JsWord>) { ... } fn visit_opt_namespace(&mut self, n: Option<&Namespace>) { ... } fn visit_span(&mut self, n: &Span) { ... } fn visit_text(&mut self, n: &Text) { ... }
}

Provided Methods§

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

This method can be overriden to customize the visitor behavior.

Implementations on Foreign Types§

Implementors§