Struct layout2d::rctree::NodeRef [] [src]

pub struct NodeRef<T>(_);

A reference to a node holding a value of type T. Nodes form a tree.

Internally, this uses reference counting for lifetime tracking and std::cell::RefCell for interior mutability.

Note: Cloning a NodeRef only increments a reference count. It does not copy the data.

Methods

impl<T> NodeRef<T>
[src]

Create a new node from its associated data.

Return a reference to the parent node, unless this node is the root of the tree.

Panics

Panics if the node is currently mutability borrowed.

Return a reference to the first child of this node, unless it has no child.

Panics

Panics if the node is currently mutability borrowed.

Return a reference to the last child of this node, unless it has no child.

Panics

Panics if the node is currently mutability borrowed.

Return a reference to the previous sibling of this node, unless it is a first child.

Panics

Panics if the node is currently mutability borrowed.

Return a reference to the previous sibling of this node, unless it is a first child.

Panics

Panics if the node is currently mutability borrowed.

Return a shared reference to this node’s data

Panics

Panics if the node is currently mutability borrowed.

Return a unique/mutable reference to this node’s data

Panics

Panics if the node is currently borrowed.

Returns whether two references point to the same node.

Return an iterator of references to this node and its ancestors.

Call .next().unwrap() once on the iterator to skip the node itself.

Return an iterator of references to this node and the siblings before it.

Call .next().unwrap() once on the iterator to skip the node itself.

Return an iterator of references to this node and the siblings after it.

Call .next().unwrap() once on the iterator to skip the node itself.

Return an iterator of references to this node’s children.

Panics

Panics if the node is currently mutability borrowed.

Return an iterator of references to this node’s children, in reverse order.

Panics

Panics if the node is currently mutability borrowed.

Return an iterator of references to this node and its descendants, in tree order.

Parent nodes appear before the descendants. Call .next().unwrap() once on the iterator to skip the node itself.

Return an iterator of references to this node and its descendants, in tree order.

Return an iterator of references to this node and its descendants, in tree order.

Detach a node from its parent and siblings. Children are not affected.

Panics

Panics if the node or one of its adjoining nodes is currently borrowed.

Append a new child to this node, after existing children.

Panics

Panics if the node, the new child, or one of their adjoining nodes is currently borrowed.

Prepend a new child to this node, before existing children.

Panics

Panics if the node, the new child, or one of their adjoining nodes is currently borrowed.

Insert a new sibling after this node.

Panics

Panics if the node, the new sibling, or one of their adjoining nodes is currently borrowed.

Insert a new sibling before this node.

Panics

Panics if the node, the new sibling, or one of their adjoining nodes is currently borrowed.

Trait Implementations

impl<T> Clone for NodeRef<T>
[src]

Cloning a NodeRef only increments a reference count. It does not copy the data.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for NodeRef<T>
[src]

Formats the value using the given formatter.