Module collections::dlist[src]
A doubly-linked list with owned nodes.
The DList allows pushing and popping elements at either end.
DList implements the trait Deque. It should be imported with use
collections::Deque.
Structs
| DList | A doubly-linked list. |
| Items | Double-ended DList iterator |
| MoveItems | DList consuming iterator |
| MutItems | Double-ended mutable DList iterator |
Traits
| ListInsertion | Allow mutating the DList while iterating |