Struct html5ever_ext::Node
[−]
pub struct Node {
pub parent: Cell<Option<Weak<Node>>>,
pub children: RefCell<Vec<Rc<Node>>>,
pub data: NodeData,
}A DOM node.
Fields
parent: Cell<Option<Weak<Node>>>
Parent node.
children: RefCell<Vec<Rc<Node>>>
Child nodes of this node.
data: NodeData
Represents this node's data.