pub struct RandomState { /* private fields */ }
Expand description
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.
§Examples
use std::collections::HashMap;
use std::hash::RandomState;
let s = RandomState::new();
let mut map = HashMap::with_hasher(s);
map.insert(1, 2);
Implementations§
Source§impl RandomState
impl RandomState
1.7.0 · Sourcepub fn new() -> RandomState
pub fn new() -> RandomState
Constructs a new RandomState
that is initialized with random keys.
§Examples
use std::hash::RandomState;
let s = RandomState::new();
Trait Implementations§
Source§impl Arbitrary for RandomState
impl Arbitrary for RandomState
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.Source§type Strategy = LazyJust<RandomState, fn() -> RandomState>
type Strategy = LazyJust<RandomState, fn() -> RandomState>
The type of
Strategy
used to generate values of type Self
.Source§fn arbitrary_with(
_args: <RandomState as Arbitrary>::Parameters,
) -> <RandomState as Arbitrary>::Strategy
fn arbitrary_with( _args: <RandomState as Arbitrary>::Parameters, ) -> <RandomState as Arbitrary>::Strategy
1.7.0 · Source§impl BuildHasher for RandomState
impl BuildHasher for RandomState
1.7.0 · Source§impl Clone for RandomState
impl Clone for RandomState
Source§fn clone(&self) -> RandomState
fn clone(&self) -> RandomState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more1.16.0 · Source§impl Debug for RandomState
impl Debug for RandomState
1.7.0 · Source§impl Default for RandomState
impl Default for RandomState
Source§fn default() -> RandomState
fn default() -> RandomState
Constructs a new RandomState
.
Auto Trait Implementations§
impl Freeze for RandomState
impl RefUnwindSafe for RandomState
impl Send for RandomState
impl Sync for RandomState
impl Unpin for RandomState
impl UnwindSafe for RandomState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more