Introduction to Rust - Part 3: Data Types

Опубликовано: 03 Апрель 2026
на канале: Rhymu's Videos
1,925
103

Introduction to Rust - Part 3: Data Types

This is the 3rd in a series of videos that cover, step by step, learning to
code using the Rust programming language.

In this video we'll cover data types: what they are and how to express them in Rust.

0:00 - Introduction
0:07 - What is a data type?
0:40 - Static vs Dynamic types (Rust is mostly static)
1:31 - Setting up to explore different data types
2:23 - Binding names to values
2:42 - Expressions: computations using values
3:31 - Inlay hints: insight into Rust type inference
4:04 - Type annotations: picking the type
4:21 - Integer types
5:19 - Type casting
6:02 - Floating-point types
7:07 - Boolean type
8:02 - Character type
9:36 - Tuple types
11:10 - Array types
12:05 - Structure types
14:06 - Enumeration types
15:43 - Function types
16:29 - Unit (empty tuple) type
17:04 - Type aliasing
17:29 - In Summary