lib.rs
CaseInsensitiveHashMap
A wrapper around the std::collections::HashMap that uses case-insensitive Strings for keys. Since this is a simple wrapper around the standard HashMap, please see its documentation for more information. The key type of the CaseInsensitiveHashMap is always UniCase<String>. Most methods that have a key parameter have a constraint <K: Into<Key>>.
Storekey
Order-preserving encoding is useful for creating keys for sorted key-value stores with byte string typed keys, such as EchoDB, YokuDB, IndxDB, TiKV, and SurrealDB. Features. Binary encoding whilst preserving lexicographic sort order; Useful for creating keys for sorted key-value data stores; Aims to encode values into the fewest number of bytes ...