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
pub mod de;
pub mod ser;

/// A module to use with `#[serde(with = "...")]`
pub mod hashtable_columns_map {
    pub use super::{
        de::deserialize_hashtable_from_map as deserialize,
        ser::serialize_hashtable_as_map as serialize,
    };
}