HashStr is a dynamically sized type so it is used similarly to &str.
A hash is stored at the beginning followed by a str. The length is
known by the fat pointer when in the form &HashStr.
Helper type for indexing a HashMap without allocation
Unhashed str is hashed on the fly instead of using a precalculated hash.
Useful for indexing a HashMap without needing to allocate a Box