pub struct RBTreeNode<K, V> { /* private fields */ }
Expand description
A red-black tree node.
The node is fully initialised (with key and value) and can be inserted into a tree without any extra allocations or failure paths.
Implementations§
Source§impl<K, V> RBTreeNode<K, V>
impl<K, V> RBTreeNode<K, V>
Sourcepub fn new(key: K, value: V, flags: Flags) -> Result<RBTreeNode<K, V>>
pub fn new(key: K, value: V, flags: Flags) -> Result<RBTreeNode<K, V>>
Allocates and initialises a node that can be inserted into the tree via
RBTree::insert
.
Sourcepub fn to_key_value(self) -> (K, V)
pub fn to_key_value(self) -> (K, V)
Get the key and value from inside the node.
Source§impl<K, V> RBTreeNode<K, V>
impl<K, V> RBTreeNode<K, V>
Sourcepub fn into_reservation(self) -> RBTreeNodeReservation<K, V>
pub fn into_reservation(self) -> RBTreeNodeReservation<K, V>
Drop the key and value, but keep the allocation.
It then becomes a reservation that can be re-initialised into a different node (i.e., with a different key and/or value).
The existing key and value are dropped in-place as part of this operation, that is, memory may be freed (but only for the key/value; memory for the node itself is kept for reuse).
Trait Implementations§
impl<K: Send, V: Send> Send for RBTreeNode<K, V>
impl<K: Sync, V: Sync> Sync for RBTreeNode<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for RBTreeNode<K, V>
impl<K, V> RefUnwindSafe for RBTreeNode<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Unpin for RBTreeNode<K, V>
impl<K, V> UnwindSafe for RBTreeNode<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
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