pub enum NodeData {
    Document,
    Doctype {
        name: Tendril<UTF8, NonAtomic>,
        public_id: Tendril<UTF8, NonAtomic>,
        system_id: Tendril<UTF8, NonAtomic>,
    },
    Text {
        contents: RefCell<Tendril<UTF8, NonAtomic>>,
    },
    Comment {
        contents: Tendril<UTF8, NonAtomic>,
    },
    Element {
        name: QualName,
        attrs: RefCell<Vec<Attribute, Global>>,
        template_contents: Option<Rc<Node>>,
        mathml_annotation_xml_integration_point: bool,
    },
    ProcessingInstruction {
        target: Tendril<UTF8, NonAtomic>,
        contents: Tendril<UTF8, NonAtomic>,
    },
}
Expand description

The different kinds of nodes in the DOM.

Variants

Document

The Document itself - the root node of a HTML document.

Doctype

Fields

public_id: Tendril<UTF8, NonAtomic>
system_id: Tendril<UTF8, NonAtomic>

A DOCTYPE with name, public id, and system id. See document type declaration on wikipedia.

Text

Fields

A text node.

Comment

Fields

contents: Tendril<UTF8, NonAtomic>

A comment.

Element

Fields

name: QualName
template_contents: Option<Rc<Node>>

For HTML <template> elements, the template contents.

mathml_annotation_xml_integration_point: bool

Whether the node is a HTML integration point.

An element with attributes.

ProcessingInstruction

Fields

contents: Tendril<UTF8, NonAtomic>

A Processing instruction.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.