Re-exports

pub use vec::Vector;
pub use self::lookup_map::LookupMap;
pub use self::unordered_map::UnorderedMap;
pub use self::unordered_set::UnorderedSet;
pub use self::tree_map::TreeMap;

Modules

Storage key hash function types and trait to override map hash functions.

Structs

An persistent lazily loaded value, that stores a value in the storage.

An persistent lazily loaded option, that stores a value in the storage when Some(value) is set, and not when None is set. LazyOption also Derefs into Option so we get all its APIs for free.