pub struct RBTreeNodeReservation<K, V> { /* private fields */ }
Expand description
A memory reservation for a red-black tree node.
It contains the memory needed to hold a node that can be inserted into a red-black tree. One
can be obtained by directly allocating it (RBTreeNodeReservation::new
).
Implementations§
Source§impl<K, V> RBTreeNodeReservation<K, V>
impl<K, V> RBTreeNodeReservation<K, V>
Sourcepub fn new(flags: Flags) -> Result<RBTreeNodeReservation<K, V>>
pub fn new(flags: Flags) -> Result<RBTreeNodeReservation<K, V>>
Allocates memory for a node to be eventually initialised and inserted into the tree via a
call to RBTree::insert
.
Source§impl<K, V> RBTreeNodeReservation<K, V>
impl<K, V> RBTreeNodeReservation<K, V>
Sourcepub fn into_node(self, key: K, value: V) -> RBTreeNode<K, V>
pub fn into_node(self, key: K, value: V) -> RBTreeNode<K, V>
Initialises a node reservation.
It then becomes an RBTreeNode
that can be inserted into a tree.
Trait Implementations§
impl<K, V> Send for RBTreeNodeReservation<K, V>
impl<K, V> Sync for RBTreeNodeReservation<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for RBTreeNodeReservation<K, V>
impl<K, V> RefUnwindSafe for RBTreeNodeReservation<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Unpin for RBTreeNodeReservation<K, V>
impl<K, V> UnwindSafe for RBTreeNodeReservation<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