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>)
A parent node containing several child nodes
Trait Implementations§
Source§impl<T> RTreeObject for RTreeNode<T>where
T: RTreeObject,
impl<T> RTreeObject for RTreeNode<T>where
T: RTreeObject,
Auto Trait Implementations§
impl<T> Freeze for RTreeNode<T>
impl<T> RefUnwindSafe for RTreeNode<T>
impl<T> Send for RTreeNode<T>
impl<T> Sync for RTreeNode<T>
impl<T> Unpin for RTreeNode<T>
impl<T> UnwindSafe for RTreeNode<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more