Struct markup5ever::rcdom::Node [] [src]

pub struct Node {
    pub parent: Cell<Option<WeakHandle>>,
    pub children: RefCell<Vec<Handle>>,
    pub data: NodeData,
}

A DOM node.

Fields

Parent node.

Child nodes of this node.

Represents this node's data.