Struct twox_hash::XxHash32 [−][src]
pub struct XxHash32 { /* fields omitted */ }
Calculates the 32-bit hash. Care should be taken when using this hash.
Although this struct implements Hasher
, it only calculates a
32-bit number, leaving the upper bits as 0. This means it is
unlikely to be correct to use this in places like a HashMap
.
Implementations
impl XxHash32
[src]
impl XxHash32
[src]pub fn with_seed(seed: u32) -> XxHash32
[src]
Constructs the hash with an initial seed
pub fn seed(&self) -> u32
[src]
pub fn total_len(&self) -> u32
[src]
Get the total number of bytes hashed, truncated to 32 bits.
For the full 64-bit byte count, use total_len_64
pub fn total_len_64(&self) -> u64
[src]
Get the total number of bytes hashed.
Trait Implementations
impl Hasher for XxHash32
[src]
impl Hasher for XxHash32
[src]