Loading lesson path
Rust
Rust Data Structures focused on Rust Data Structures and related concepts.
In Rust, data structures are used to store and organize values.
Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value.
A vector is a resizable array. Unlike regular arrays, vectors can grow or shrink in size.
A tuple is a group of values of different types, stored in a single variable.
A HashMap is a collection of key/value pairs.
A struct (short for "structure") is a custom data structure that lets you group related values together.
An enum (short for "enumeration") is a way to define a type that can be one of a few different values.