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 node.

Child nodes of this node.

Represents this node's data.

Trait Implementations

Auto Trait Implementations

impl !Send for Node

impl !Sync for Node