pub trait VisitWith<V: ?Sized + Visit> {
// Required methods
fn visit_with(&self, visitor: &mut V);
fn visit_children_with(&self, visitor: &mut V);
}
Expand description
A trait implemented for types that can be visited using a visitor.
Required Methods§
sourcefn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls a visitor method (visitor.fold_xxx) with self.
sourcefn visit_children_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
Visit children nodes of self`` with
visitor`.
Implementations on Foreign Types§
source§impl<V, T> VisitWith<V> for Box<T>
impl<V, T> VisitWith<V> for Box<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V, T> VisitWith<V> for Vec<T>
impl<V, T> VisitWith<V> for Vec<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Namespace>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Namespace>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_namespace
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Atom
impl<V: ?Sized + Visit> VisitWith<V> for Atom
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Attribute
impl<V: ?Sized + Visit> VisitWith<V> for Attribute
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeToken
impl<V: ?Sized + Visit> VisitWith<V> for AttributeToken
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_token
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CdataSection
impl<V: ?Sized + Visit> VisitWith<V> for CdataSection
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_cdata_section
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Child
impl<V: ?Sized + Visit> VisitWith<V> for Child
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_child
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Comment
impl<V: ?Sized + Visit> VisitWith<V> for Comment
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_comment
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Document
impl<V: ?Sized + Visit> VisitWith<V> for Document
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DocumentMode
impl<V: ?Sized + Visit> VisitWith<V> for DocumentMode
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document_mode
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DocumentType
impl<V: ?Sized + Visit> VisitWith<V> for DocumentType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Element
impl<V: ?Sized + Visit> VisitWith<V> for Element
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Namespace
impl<V: ?Sized + Visit> VisitWith<V> for Namespace
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_namespace
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ProcessingInstruction
impl<V: ?Sized + Visit> VisitWith<V> for ProcessingInstruction
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_processing_instruction
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Span
impl<V: ?Sized + Visit> VisitWith<V> for Span
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_span
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Text
impl<V: ?Sized + Visit> VisitWith<V> for Text
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_text
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Token
impl<V: ?Sized + Visit> VisitWith<V> for Token
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_token
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TokenAndSpan
impl<V: ?Sized + Visit> VisitWith<V> for TokenAndSpan
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_token_and_span
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [AttributeToken]
impl<V: ?Sized + Visit> VisitWith<V> for [AttributeToken]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_tokens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Attribute]
impl<V: ?Sized + Visit> VisitWith<V> for [Attribute]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attributes
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Child]
impl<V: ?Sized + Visit> VisitWith<V> for [Child]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_childs
with self
. (Extra impl)