Struct std::collections::hash_map::RandomState1.7.0[][src]

pub struct RandomState { /* fields omitted */ }
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::collections::hash_map::RandomState;

let s = RandomState::new();
let mut map = HashMap::with_hasher(s);
map.insert(1, 2);
Run

Implementations

Constructs a new RandomState that is initialized with random keys.

Examples

use std::collections::hash_map::RandomState;

let s = RandomState::new();
Run

Trait Implementations

Type of the hasher that will be created.

Creates a new hasher. Read more

🔬 This is a nightly-only experimental API. (build_hasher_simple_hash_one #86161)

Calculates the hash of a single value. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Constructs a new RandomState.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.