Enum rstar::RTreeNode [−][src]
pub enum RTreeNode<T> where
T: RTreeObject, {
Leaf(T),
Parent(ParentNode<T>),
}
Expand description
An internal tree node.
For most applications, using this type should not be required.
Variants
Leaf(T)
A leaf node, only containing the r-tree object
Parent(ParentNode<T>)
Tuple Fields
0: ParentNode<T>
A parent node containing several child nodes
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for RTreeNode<T> where
T: RefUnwindSafe,
<T as RTreeObject>::Envelope: RefUnwindSafe,
impl<T> UnwindSafe for RTreeNode<T> where
T: UnwindSafe,
<T as RTreeObject>::Envelope: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more