Crate http_compress Copy item path Source iter iter_set mapref random_state setref try_result AHashMap A HashMap using RandomState to hash the items.
(Requires the std feature to be enabled.) AHashSet A HashSet using RandomState to hash the items.
(Requires the std feature to be enabled.) AHasher A Hasher for hashing an arbitrary stream of bytes. DashMap DashMap is an implementation of a concurrent associative array/hashmap in Rust. DashSet DashSet is a thin wrapper around DashMap using () as the value type. It uses
methods and types which are more convenient to work with on a set. OccupiedEntry RandomState Provides a Hasher factory. This is typically used (e.g. by HashMap ) to create
AHasher s in order to hash the keys of the map. See build_hasher below. ReadOnlyView A read-only view into a DashMap. Allows to obtain raw references to the stored values. TryReserveError VacantEntry Compress Entry HashMapExt A convenience trait that can be used together with the type aliases defined to
get access to the new() and with_capacity() methods for the HashMap type alias. HashSetExt A convenience trait that can be used together with the type aliases defined to
get access to the new() and with_capacity() methods for the HashSet type aliases. Map Implementation detail that is exposed due to generic constraints in public types. HashMap Type alias for HashMap <K, V, ahash::RandomState> HashSet Type alias for HashSet <K, ahash::RandomState>