Enum svgdom::NodeType [] [src]

pub enum NodeType {
    Root,
    Element,
    Declaration,
    Comment,
    Cdata,
    Text,
}

List of supported node types.

Variants

Root node of the Document.

Constructed with Document. Unavailable to user.

Element node.

Only an element can have attributes, ID and tag name.

Declaration node.

Comment node.

CDATA node.

Text node.