Struct anymap::raw::OccupiedEntry [] [src]

pub struct OccupiedEntry<'a, A: ?Sized + UncheckedAnyExt> { /* fields omitted */ }

A view into a single occupied location in a RawMap.

Methods

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

Gets a reference to the value in the entry.

Gets a mutable reference to the value in the entry.

Converts the OccupiedEntry into a mutable reference to the value in the entry with a lifetime bound to the collection itself.

Sets the value of the entry, and returns the entry's old value.

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.

Takes the value out of the entry, and returns it.