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

NameDescriptionEnabled by default?
hashbrownUses hashbrown instead of std hashmapNo
serdeSerde trait implementationsYes
hashbrown-serdeEnables hashbrown’s serde feature and serde and hashbrown features of this crateNo

Re-exports§

pub use table::HashTable;

Modules§

column
Various column access types
row
Various row access types
table
HashTable and its associated types
typedefs
Re-exports of std or hashbrown types for easier usage throughout the library