Enum svgdom::NodeType[][src]

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

List of supported node types.

Variants

The root node of the Document.

Constructed with Document. Unavailable to the user.

An element node.

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

A comment node.

A text node.

Trait Implementations

impl Clone for NodeType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NodeType
[src]

impl PartialEq for NodeType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for NodeType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for NodeType

impl Sync for NodeType