Docs.rs
hash_str-0.0.1
hash_str 0.0.1
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
krakow10
Dependencies
ahash ^0.8.11
normal
bumpalo ^3.17.0
normal
optional
hashbrown ^0.15.2
normal
optional
Versions
75%
of the crate is documented
Go to latest version
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
hash_
str
0.0.1
All Items
Crate Items
Structs
Type Aliases
Crate
hash_str
Copy item path
Source
Structs
§
HashStr
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.
Type Aliases
§
Hash
StrMap
A standard
HashMap
using
&HashStr
as the key type with a custom
Hasher
that just uses the precomputed hash for speed instead of calculating it.
Hash
StrSet
A standard
HashSet
using
&HashStr
as the key type with a custom
Hasher
that just uses the precomputed hash for speed instead of calculating it.