Struct evmap::Options [] [src]

pub struct Options<M, S> where
    S: BuildHasher
{ /* fields omitted */ }

Options for how to initialize the map.

In particular, the options dictate the hashing function, meta type, and initial capacity of the map.

Methods

impl<M, S> Options<M, S> where
    S: BuildHasher
[src]

Set the initial meta value for the map.

Set the hasher used for the map.

Set the initial capacity for the map.

Create the map, and construct the read and write handles used to access it.

Trait Implementations

impl Default for Options<(), RandomState>
[src]

Returns the "default value" for a type. Read more