[][src]Module hashmap_core::map

Deprecated:

use hashbrown instead

Re-exports

pub use fnv::FnvBuildHasher as RandomState;
pub use fnv::FnvHasher as DefaultHasher;

Structs

DrainDeprecated

A draining iterator over the entries of a HashMap.

HashMapDeprecated

A hash map implemented with linear probing and Robin Hood bucket stealing.

IntoIterDeprecated

An owning iterator over the entries of a HashMap.

IterDeprecated

An iterator over the entries of a HashMap.

IterMutDeprecated

A mutable iterator over the entries of a HashMap.

KeysDeprecated

An iterator over the keys of a HashMap.

OccupiedEntryDeprecated

A view into an occupied entry in a HashMap. It is part of the Entry enum.

VacantEntryDeprecated

A view into a vacant entry in a HashMap. It is part of the Entry enum.

ValuesDeprecated

An iterator over the values of a HashMap.

ValuesMutDeprecated

A mutable iterator over the values of a HashMap.

Enums

EntryDeprecated

A view into a single entry in a map, which may either be vacant or occupied.