Module std::collections::dlistExperimental [-]  [+] [src]

A doubly-linked list with owned nodes.

The DList allows pushing and popping elements at either end and is thus efficiently usable as a double-ended queue.

Structs

DList

A doubly-linked list.

IntoIter

An iterator over mutable references to the items of a DList.

Iter

An iterator over references to the items of a DList.

IterMut

An iterator over mutable references to the items of a DList.

Traits

ListInsertion

Allows mutating a DList while iterating.