Crate http_compress

Source

Modules§

iter
iter_set
mapref
random_state
setref
try_result

Structs§

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 AHashers 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

Enums§

Compress
Entry

Traits§

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.

Type Aliases§

HashMap
Type alias for HashMap<K, V, ahash::RandomState>
HashSet
Type alias for HashSet<K, ahash::RandomState>