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

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.

Implementations

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.

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

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.