pub struct ExRandomState(/* private fields */);
Expand description
Specifications for the behavior of
std::hash::RandomState
.
RandomState
is the default BuildHasher
used by Rust’s HashMap
and HashSet
implementations.
We have an axiom that RandomState
satisfies builds_valid_hashers()
and thereby conforms to our model of how BuildHasher
behaves.
Auto Trait Implementations§
impl Freeze for ExRandomState
impl RefUnwindSafe for ExRandomState
impl Send for ExRandomState
impl Sync for ExRandomState
impl Unpin for ExRandomState
impl UnwindSafe for ExRandomState
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