pub trait Fold {
Show 19 methods fn fold_attribute(&mut self, n: Attribute) -> Attribute { ... } fn fold_attributes(&mut self, n: Vec<Attribute>) -> Vec<Attribute> { ... } fn fold_child(&mut self, n: Child) -> Child { ... } fn fold_children(&mut self, n: Vec<Child>) -> Vec<Child> { ... } fn fold_comment(&mut self, n: Comment) -> Comment { ... } fn fold_document(&mut self, n: Document) -> Document { ... } fn fold_document_fragment(
        &mut self,
        n: DocumentFragment
    ) -> DocumentFragment { ... } fn fold_document_mode(&mut self, n: DocumentMode) -> DocumentMode { ... } fn fold_document_type(&mut self, n: DocumentType) -> DocumentType { ... } fn fold_element(&mut self, n: Element) -> Element { ... } fn fold_js_word(&mut self, n: JsWord) -> JsWord { ... } fn fold_namespace(&mut self, n: Namespace) -> Namespace { ... } fn fold_opt_document_fragment(
        &mut self,
        n: Option<DocumentFragment>
    ) -> Option<DocumentFragment> { ... } fn fold_opt_js_word(&mut self, n: Option<JsWord>) -> Option<JsWord> { ... } fn fold_opt_namespace(&mut self, n: Option<Namespace>) -> Option<Namespace> { ... } fn fold_span(&mut self, n: Span) -> Span { ... } fn fold_text(&mut self, n: Text) -> Text { ... } fn fold_token(&mut self, n: Token) -> Token { ... } fn fold_token_and_span(&mut self, n: TokenAndSpan) -> TokenAndSpan { ... }
}

Provided Methods

Implementations on Foreign Types

Implementors