pub struct Builder<S = RandomState> { /* private fields */ }
Expand description

A builder for a map.

This builder allows you to specify an initial capacity and a hasher, and provides more flexibility in how that hasher can be constructed.

Implementations

Creates a new builder with a RandomState hasher, and an initial capacity of zero.

Sets the initial capacity of the map. If not specified, the default is 0.

Sets the hasher for the underlying map. The provided hasher must implement Clone due to the implementation details of this crate.

Safety

See crate::with_hasher.

Sets the hasher for the underlying map. Similar to with_hasher, but instead of using a concrete hasher builder, the provided function will be called as many times as necessary to initialize the underlying map.

Safety

See crate::with_hasher.

Consumes the builder and returns a write handle and read handle to the map.

Examples
// Use type inference to determine the key and value types
let (mut write, read) = Builder::new().build();

write.guard().insert(10u32, 20u32);

// Or specify them explicitly
let (write, read) = Builder::new().build::<String, String>();

Consumes the builder and returns a write handle and read handle to the map.

Safety

The implementations of Hash and Eq for the key type must be deterministic. See TrustedHashEq for details.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

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

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.