Enum intrusive_collections::rbtree::Entry
source · pub enum Entry<'a, A: Adapter>{
Occupied(CursorMut<'a, A>),
Vacant(InsertCursor<'a, A>),
}
Expand description
An entry in a RBTree
.
See the documentation for RBTree::entry
.
Variants§
Implementations§
source§impl<'a, A: Adapter + 'a> Entry<'a, A>
impl<'a, A: Adapter + 'a> Entry<'a, A>
sourcepub fn or_insert(
self,
val: <A::PointerOps as PointerOps>::Pointer,
) -> CursorMut<'a, A>
pub fn or_insert( self, val: <A::PointerOps as PointerOps>::Pointer, ) -> CursorMut<'a, A>
Inserts an element into the RBTree
if the entry is vacant, returning
a CursorMut
to the resulting value. If the entry is occupied then a
CursorMut
pointing to the element is returned.
§Panics
Panics if the Entry
is vacant and the new element is already linked to
a different intrusive collection.
sourcepub fn or_insert_with<F>(self, default: F) -> CursorMut<'a, A>
pub fn or_insert_with<F>(self, default: F) -> CursorMut<'a, A>
Calls the given function and inserts the result into the RBTree
if the
entry is vacant, returning a CursorMut
to the resulting value. If the
entry is occupied then a CursorMut
pointing to the element is
returned and the function is not executed.
§Panics
Panics if the Entry
is vacant and the new element is already linked to
a different intrusive collection.
Auto Trait Implementations§
impl<'a, A> Freeze for Entry<'a, A>
impl<'a, A> RefUnwindSafe for Entry<'a, A>
impl<'a, A> Send for Entry<'a, A>
impl<'a, A> Sync for Entry<'a, A>
impl<'a, A> Unpin for Entry<'a, A>
impl<'a, A> !UnwindSafe for Entry<'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