[][src]Enum intrusive_collections::rbtree::Entry

pub enum Entry<'a, A: Adapter<Link = Link> + 'a> {
    Occupied(CursorMut<'a, A>),
    Vacant(InsertCursor<'a, A>),
}

An entry in a RBTree.

See the documentation for RBTree::entry.

Variants

Occupied(CursorMut<'a, A>)

An occupied entry.

Vacant(InsertCursor<'a, A>)

A vacant entry.

Methods

impl<'a, A: Adapter<Link = Link> + 'a> Entry<'a, A>[src]

pub fn or_insert(self, val: A::Pointer) -> CursorMut<'a, A>[src]

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.

pub fn or_insert_with<F>(self, default: F) -> CursorMut<'a, A> where
    F: FnOnce() -> A::Pointer
[src]

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> Unpin for Entry<'a, A>

impl<'a, A> !Send for Entry<'a, A>

impl<'a, A> !Sync for Entry<'a, A>

impl<'a, A> !UnwindSafe for Entry<'a, A>

impl<'a, A> !RefUnwindSafe for Entry<'a, A>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]