Struct intrusive_collections::rbtree::InsertCursor
source · pub struct InsertCursor<'a, A: Adapter>{ /* private fields */ }
Expand description
A cursor pointing to a slot in which an element can be inserted into a
RBTree
.
Implementations§
source§impl<'a, A: Adapter + 'a> InsertCursor<'a, A>
impl<'a, A: Adapter + 'a> InsertCursor<'a, A>
sourcepub fn insert(
self,
val: <A::PointerOps as PointerOps>::Pointer,
) -> CursorMut<'a, A>
pub fn insert( self, val: <A::PointerOps as PointerOps>::Pointer, ) -> CursorMut<'a, A>
Inserts a new element into the RBTree
at the location indicated by
this InsertCursor
.
§Panics
Panics if the new element is already linked to a different intrusive collection.