Expand description
Contains the ffi-safe equivalent of std::collections::HashMap
, and related items.
Structs§
- Into
Iter - An iterator that yields all the entries of an
RHashMap
, deallocating the hashmap afterwards. - Keys
- An iterator over the keys of a
RHashMap
. - MutIter
Interface - The
InterfaceType
of theIterMut
iterator forRHashMap
. - RHash
Map - An ffi-safe hashmap, which wraps
std::collections::HashMap<K, V, S>
, only requiring theK: Eq + Hash
bounds when constructing it. - ROccupied
Entry - A handle into an occupied entry in a map.
- RVacant
Entry - A handle into a vacant entry in a map.
- RefIter
Interface - The
InterfaceType
of theIter
iterator forRHashMap
. - ValIter
Interface - The
InterfaceType
of theDrain
iterator forRHashMap
. - Values
- An iterator over the values of a
HashMap
.
Enums§
- REntry
- A handle into an entry in a map, which is either vacant or occupied.