Struct ahash::RandomState
source · [−]pub struct RandomState { /* private fields */ }
Expand description
Implementations
sourceimpl RandomState
impl RandomState
pub fn new() -> RandomState
sourcepub fn with_seeds(k0: u64, k1: u64) -> RandomState
pub fn with_seeds(k0: u64, k1: u64) -> RandomState
Allows for explicetly setting the seeds to used.
Trait Implementations
sourceimpl BuildHasher for RandomState
impl BuildHasher for RandomState
sourcefn build_hasher(&self) -> AHasher
fn build_hasher(&self) -> AHasher
Constructs a new AHasher with keys based on compile time generated constants** and the location this object was constructed at in memory. This means that two different BuildHashers will will generate AHashers that will return different hashcodes, but Hashers created from the same BuildHasher will generate the same hashes for the same input data.
** - only if the compile-time-rng
feature is enabled.
Examples
use ahash::{AHasher, RandomState};
use std::hash::{Hasher, BuildHasher};
let build_hasher = RandomState::new();
let mut hasher_1 = build_hasher.build_hasher();
let mut hasher_2 = build_hasher.build_hasher();
hasher_1.write_u32(1234);
hasher_2.write_u32(1234);
assert_eq!(hasher_1.finish(), hasher_2.finish());
let other_build_hasher = RandomState::new();
let mut different_hasher = other_build_hasher.build_hasher();
different_hasher.write_u32(1234);
assert_ne!(different_hasher.finish(), hasher_1.finish());
sourceimpl Clone for RandomState
impl Clone for RandomState
sourcefn clone(&self) -> RandomState
fn clone(&self) -> RandomState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for RandomState
impl Send for RandomState
impl Sync for RandomState
impl Unpin for RandomState
impl UnwindSafe for RandomState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more