[][src]Module map1::btree_map

A wrapper around std::collections::BTreeMap that guarantees that it will never be empty.

Structs

BTreeEmptyError

An error returned when an operation associated with BTreeMap1 would result in it being empty.

BTreeMap1

A wrapper around std::collections::BTreeMap that guarantees that it will never be empty.

OccupiedEntry

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

VacantEntry

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

Enums

Entry

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