Enum stdweb::web::NodeType [] [src]

pub enum NodeType {
    Element,
    Text,
    ProcessingInstruction,
    Comment,
    Document,
    DocumentType,
    DocumentFragment,
    Attribute,
    CDataSection,
    XmlEntityReference,
    XmlEntity,
    XmlNotation,
}

Determines the type of a Node.

(JavaScript docs)

Variants

An Element such as <p> or <div>.

The actual Text of Element or Attr.

A ProcessingInstruction of an XML document.

A Comment node.

A 'Document' node.

A 'DocumentType' node such as <!DOCTYPE html>

A 'DocumentFragment' node.

Deprecated.

Deprecated.

Deprecated.

Deprecated.

Deprecated.

Trait Implementations

impl Clone for NodeType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for NodeType
[src]

impl Debug for NodeType
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for NodeType
[src]

impl PartialEq for NodeType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for NodeType

impl Sync for NodeType