[][src]Module mod_utilities::collections::map

Map and support structures

Macros

Hash

Derive macro generating an impl of the trait Hash.

Structs

DefaultHasher

The default Hasher used by RandomState.

IntoIter

A by-value consuming iterator for a Map

Map

An associative array of keys to values

PairIter

An iterator over (Key, Value) for a Map

PairIterMut

An iterator over (mut Key, mut Value) for a Map

PhantomData

Zero-sized type used to mark things that "act like" they own a T.

SliceIter

Immutable slice iterator

SliceIterMut

Mutable slice iterator.

VecIntoIter

An iterator that moves out of a vector.

Traits

FromIterator

Conversion from an Iterator.

Hash

A hashable type.

Hasher

A trait for hashing an arbitrary stream of bytes.

Index

Used for indexing operations (container[index]) in immutable contexts.

IndexMut

Used for indexing operations (container[index]) in mutable contexts.

Functions

replace

Moves src into the referenced dest, returning the previous dest value.