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: Cell<Option<WeakHandle>>
Parent node.
children: RefCell<Vec<Handle>>
Child nodes of this node.
data: NodeData
Represents this node's data.