Struct std::collections::hash_map::RandomState
[−]
[src]
pub struct RandomState { k0: u64, k1: u64, }
RandomState
is the default state for HashMap
types.
A particular instance RandomState
will create the same instances of
Hasher
, but the hashers created by two different RandomState
instances are unlikely to produce the same result for the same values.
Fields
k0 | |
k1 |
Methods
impl RandomState
fn new() -> RandomState
Constructs a new RandomState
that is initialized with random keys.