[][src]Module dinotree_alg::node

👎 Deprecated:

use the broccoli crate instead

Contains node-level building block structs and visitors used for a DinoTree.

Structs

NodeMutDeprecated

A lifetimed node in a dinotree.

NodeRefDeprecated

Reference to a node in the dinotree.

NodeRefMutDeprecated

Mutable reference to a node in the dinotree.

Traits

NodeDeprecated

Expose a node trait api to hide the lifetime of NodeMut. This way query algorithms do not need to worry about this lifetime.

Type Definitions

VistrDeprecated

When we traverse the tree in read-only mode, we can simply return a reference to each node. We don't need to protect the user from only mutating parts of the BBox's since they can't change anything.

VistrMutDeprecated