Struct lrs::hashmap::OccupiedEntry

A non-empty bucket.

Syntax

struct OccupiedEntry<'a, Key, Value, Bucket>
    where Bucket: Bucket<Key, Value> + 'a,
          Key: Eq<Key> + Hash,
{
    /* private fields */
}

Methods

ReceiverNameDescription
selfinto_mut

Returns the contained mutable reference to the stored value.

selfremove

Removes the contained value and key.

Trait implementations

NameDescription
Deref

Objects that implement the immutable dereference operator.

DerefMut

Objects that implement the mutable dereference operator.