[][src]Module alloc_wg::collections

Collection types.

Re-exports

pub use self::binary_heap::BinaryHeap;
pub use self::btree_map::BTreeMap;
pub use self::btree_set::BTreeSet;
pub use self::linked_list::LinkedList;
pub use self::vec_deque::VecDeque;

Modules

binary_heap

A priority queue implemented with a binary heap.

btree_map
btree_set
linked_list

A doubly-linked list with owned nodes.

vec_deque

A double-ended queue implemented with a growable ring buffer.

Enums

TryReserveError

The error type for try_reserve methods.