hash_table_datastruct 0.6.3

Adds a HashTable type, allowing to store values in a table with integer-indexed rows and hashable keys for columns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

#[cfg(all(
    feature = "serde",
    feature = "hashbrown",
    not(feature = "hashbrown-serde")
))]
compile_error!("Due to how rust features work, you need to enable the `hashbrown-serde` feature to use both hashbrown and serde");

pub mod column;
pub mod row;
pub mod table;
#[cfg(test)]
mod tests;
pub mod typedefs;
pub use table::HashTable;
#[doc(hidden)]
pub use typedefs::*;