Module secondary

Source
Expand description

Contains the secondary map implementation.

Structs§

Drain
A draining iterator for SecondaryMap.
IntoIter
An iterator that moves key-value pairs out of a SecondaryMap.
Iter
An iterator over the key-value pairs in a SecondaryMap.
IterMut
A mutable iterator over the key-value pairs in a SecondaryMap.
Keys
An iterator over the keys in a SecondaryMap.
OccupiedEntry
A view into a occupied entry in a SecondaryMap. It is part of the Entry enum.
SecondaryMap
Secondary map, associate data with previously stored elements in a slot map.
VacantEntry
A view into a vacant entry in a SecondaryMap. It is part of the Entry enum.
Values
An iterator over the values in a SecondaryMap.
ValuesMut
A mutable iterator over the values in a SecondaryMap.

Enums§

Entry
A view into a single entry in a SecondaryMap, which may either be vacant or occupied.