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(ElementData)Element node
Text(RefCell<String>)Text node
Comment(RefCell<String>)Comment node
ProcessingInstruction(RefCell<(String, String)>)Processing instruction node
Doctype(Doctype)Doctype node
Document(DocumentData)Document node
DocumentFragmentDocument fragment node
Trait Implementations
impl Debug for NodeData[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for NodeData[src]
fn eq(&self, __arg_0: &NodeData) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &NodeData) -> bool[src]
This method tests for !=.