Module milf::map[][src]

A map of String to milf::Value.

By default the map is backed by a BTreeMap. Enable the preserve_order feature of milf-rs to use LinkedHashMap instead.

Structs

IntoIter

An owning iterator over a milf::Map’s entries.

Iter

An iterator over a milf::Map’s entries.

IterMut

A mutable iterator over a milf::Map’s entries.

Keys

An iterator over a milf::Map’s keys.

Map

Represents a MILF key/value type.

OccupiedEntry

An occupied Entry. It is part of the Entry enum.

VacantEntry

A vacant Entry. It is part of the Entry enum.

Values

An iterator over a milf::Map’s values.

Enums

Entry

A view into a single entry in a map, which may either be vacant or occupied. This enum is constructed from the entry method on Map.