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]

[src]

Set the initial meta value for the map.

[src]

Set the hasher used for the map.

[src]

Set the initial capacity for the map.

[src]

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

Trait Implementations

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

[src]

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

Auto Trait Implementations

impl<M, S> Send for Options<M, S> where
    M: Send,
    S: Send

impl<M, S> Sync for Options<M, S> where
    M: Sync,
    S: Sync