Module map

Module map 

Source
Expand description

Options for customizing the map type used by Chain.

The types in this module that implement Map can be provided as the second type parameter to Chain in order to change the type of map it uses for internal storage. For example, Chain<T, BTree> will use BTreeMaps, while Chain<T, Hash> will use HashMaps.

Structs§

BTree
Represents a BTreeMap.
Hashstd
Represents a HashMap.

Traits§

Map
Represents a possible map type for Chain.