Crate hash_table_datastruct
source ·Expand description
Hash Table (data structure)
This crate provides a 2d data structure where columns are indexed by hashable keys and rows are indexed using an unsigned integer (usize).
Features
| Name | Description | Enabled by default? | 
|---|---|---|
| hashbrown | Uses hashbrowninstead of std hashmap | No | 
| serde | Serde trait implementations | Yes | 
| hashbrown-serde | Enables hashbrown’sserdefeature andserdeandhashbrownfeatures of this crate | No | 
Re-exports
- pub use table::HashTable;
Modules
- Various column access types
- Various row access types
- HashTable and its associated types
- Re-exports ofstdorhashbrowntypes for easier usage throughout the library