Rust Adventures: Introduction to Collections — Vector

Floriano Victor Peixoto
Level Up Coding
Published in
5 min readAug 16, 2020

--

Hi there folks! Let’s continue our journey over Rust lands.

Today we are going to cover Collections. It is a central aspect of every programming language.

But what are collections?

In a previous article, we discussed the Rust ownership and variable values. Variables are memory locations where our values…

--

--