Enum html2md::NodeData

source ·
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: RefCell<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

§name: Tendril<UTF8, NonAtomic>
§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

§contents: RefCell<Tendril<UTF8, NonAtomic>>

A text node.

§

Comment

Fields

§contents: Tendril<UTF8, NonAtomic>

A comment.

§

Element

Fields

§name: QualName
§attrs: RefCell<Vec<Attribute, Global>>
§template_contents: RefCell<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

§target: Tendril<UTF8, NonAtomic>
§contents: Tendril<UTF8, NonAtomic>

A Processing instruction.

Trait Implementations§

Formats the value using the given formatter. Read more

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.