Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The module std::collections has a good summary on popular collection data structures in Rust and when to use them.
- Sequences: Vec, VecDeque (double-ended queue), LinkedList (doubly-linked list)
- Maps: HashMap, BTreeMap …