Enum piston_meta::NodeRef [] [src]

pub enum NodeRef {
    Name(Rc<String>, DebugId),
    Ref(Rc<RefCell<Node>>, NodeVisit),
}

A node reference.

Variants

Name(Rc<String>, DebugId)

Points to a node by name.

Ref(Rc<RefCell<Node>>, NodeVisit)

Reference to node. The bool flag is used to prevent multiple visits when updating.