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.
Auto Trait Implementations§
impl<'a, A> Freeze for InsertCursor<'a, A>
impl<'a, A> RefUnwindSafe for InsertCursor<'a, A>
impl<'a, A> Send for InsertCursor<'a, A>
impl<'a, A> Sync for InsertCursor<'a, A>
impl<'a, A> Unpin for InsertCursor<'a, A>
impl<'a, A> !UnwindSafe for InsertCursor<'a, A>
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