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
InterfaceTypeof theIterMutiterator forRHashMap. - RHash
Map - An ffi-safe hashmap, which wraps
std::collections::HashMap<K, V, S>, only requiring theK: Eq + Hashbounds 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
InterfaceTypeof theIteriterator forRHashMap. - ValIter
Interface - The
InterfaceTypeof theDrainiterator 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.