Enum kuchiki::NodeData [] [src]

pub enum NodeData {
    Element(ElementData),
    Text(RefCell<String>),
    Comment(RefCell<String>),
    ProcessingInstruction(RefCell<(String, String)>),
    Doctype(Doctype),
    Document(DocumentData),
    DocumentFragment,
}

Node data specific to the node type.

Variants

Element node

Text node

Comment node

Processing instruction node

Doctype node

Document node

Document fragment node

Trait Implementations

impl Debug for NodeData
[src]

Formats the value using the given formatter.

impl PartialEq for NodeData
[src]

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

This method tests for !=.

impl Clone for NodeData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more