Enum roxmltree::NodeType[][src]

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

List of supported node types.

Variants

The root node of the Document.

An element node.

Only an element can have tag name and attributes.

A processing instruction.

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