Enum xml5ever::rcdom::NodeEnum [] [src]

pub enum NodeEnum {
    Document,
    Doctype(StrTendrilStrTendrilStrTendril),
    Text(StrTendril),
    Comment(StrTendril),
    Element(QNameVec<Attribute>),
    PI(StrTendrilStrTendril),
}

The different kinds of nodes in the DOM.

Variants

The Document itself.

A DOCTYPE with name, public id, and system id.

A text node.

A comment.

An element with attributes.

A Processing instruction.

Trait Implementations

impl Debug for NodeEnum
[src]

Formats the value using the given formatter.