Enum html5ever::rcdom::NodeEnum
[−]
[src]
pub enum NodeEnum {
Document,
Doctype(StrTendril, StrTendril, StrTendril),
Text(StrTendril),
Comment(StrTendril),
Element(QualName, ElementEnum, Vec<Attribute>),
}The different kinds of nodes in the DOM.
Variants
DocumentThe Document itself.
Doctype(StrTendril, StrTendril, StrTendril)A DOCTYPE with name, public id, and system id.
Text(StrTendril)A text node.
Comment(StrTendril)A comment.
Element(QualName, ElementEnum, Vec<Attribute>)An element with attributes.