Enum anymap::raw::Entry [] [src]

pub enum Entry<'a, A: ?Sized + UncheckedAnyExt> {
    Occupied(OccupiedEntry<'a, A>),
    Vacant(VacantEntry<'a, A>),
}

A view into a single location in a RawMap, which may be vacant or occupied.

Variants

An occupied Entry

A vacant Entry

Methods

impl<'a, A: ?Sized + UncheckedAnyExt> Entry<'a, A>
[src]

Ensures a value is in the entry by inserting the default if empty, and returns a mutable reference to the value in the entry.

It is the caller’s responsibility to ensure that the key of the entry corresponds with the type ID of value. If they do not, memory safety may be violated.

Ensures a value is in the entry by inserting the result of the default function if empty, and returns a mutable reference to the value in the entry.

It is the caller’s responsibility to ensure that the key of the entry corresponds with the type ID of value. If they do not, memory safety may be violated.