Enum html5ever::rcdom::NodeEnum [] [src]

pub enum NodeEnum {
    Document,
    Doctype(StrTendril, StrTendril, StrTendril),
    Text(StrTendril),
    Comment(StrTendril),
    Element(QualNameElementEnumVec<Attribute>),
}

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.

Trait Implementations

impl Debug for NodeEnum
[src]

Formats the value using the given formatter.