Struct ahash::RandomState [−][src]
Provides a Hasher factory. This is typically used (e.g. by HashMap) to create
AHashers in order to hash the keys of the map. See build_hasher
below.
Implementations
impl RandomState
[src][−]
pub fn new() -> RandomState
[src][−]
Use randomly generated keys
pub fn generate_with(k0: u64, k1: u64, k2: u64, k3: u64) -> RandomState
[src][−]
Allows for supplying seeds, but each time it is called the resulting state will be different. This is done using a static counter, so it can safely be used with a fixed keys.
pub const fn with_seeds(k0: u64, k1: u64, k2: u64, k3: u64) -> RandomState
[src][−]
Allows for explicitly setting the seeds to used.
Trait Implementations
impl BuildHasher for RandomState
[src][+]
impl Clone for RandomState
[src][+]
impl Debug for RandomState
[src][+]
impl Default for RandomState
[src][+]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,