Module collections::linked_list [] [src]

A doubly-linked list with owned nodes.

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

Structs

IntoIter

An iterator over mutable references to the items of a LinkedList`LinkedList`.

Iter

An iterator over references to the items of a LinkedList`LinkedList`.

IterMut

An iterator over mutable references to the items of a LinkedList`LinkedList`.

LinkedList

A doubly-linked list.