Type Alias veloren_world::util::DHashMap

source ·
pub type DHashMap<K, V> = HashMap<K, V, BuildHasherDefault<FxHasher64>>;

Aliased Type§

struct DHashMap<K, V> {
    pub(crate) hash_builder: BuildHasherDefault<FxHasher64>,
    pub(crate) table: RawTable<(K, V)>,
}

Fields§

§hash_builder: BuildHasherDefault<FxHasher64>§table: RawTable<(K, V)>