Structs§
- Drain
- A draining iterator for
IterableMap<K, V, H>. - Iter
- An iterator over elements of a
IterableMap. - IterMut
- A mutable iterator over elements of a
IterableMap. - Iterable
Map - A lazily loaded storage map that stores its content directly on the storage trie.
This structure is similar to
unc_sdk::store::LookupMap, except that it stores the keys so thatIterableMapcan be iterable. - Keys
- An iterator over the keys of a
IterableMap. - Occupied
Entry - View into an occupied entry in a
IterableMap. This is part of theEntryenum. - Vacant
Entry - View into a vacant entry in a
IterableMap. This is part of theEntryenum. - Values
- An iterator over the values of a
IterableMap. - Values
Mut - A mutable iterator over values of a
IterableMap.
Enums§
- Entry
- A view into a single entry in the map, which can be vacant or occupied.