Type Alias bones_framework::prelude::UstrMap
pub type UstrMap<V> = HashMap<Ustr, V, BuildHasherDefault<IdentityHasher>>;
Expand description
A standard HashMap
using Ustr
as the key type with a custom Hasher
that just uses the precomputed hash for speed instead of calculating it
Aliased Typeยง
struct UstrMap<V> { /* private fields */ }