Rust Crash Course Tutorial for Beginners

Welcome to our comprehensive series on learning Rust, a powerful and efficient programming language. This playlist is designed to guide you from the very basics of Rust to its most advanced features. Whether you're entirely new to programming or an experienced developer looking to add Rust to your skillset, these lessons are structured to provide a clear and progressive learning path. Join us as we explore Rust's unique approach to safety, speed, and concurrency and become proficient in this increasingly popular language. Remember to subscribe and activate notifications so you don't miss the new videos

Curated by: Francesco Ciulla (54 videos)


Currently Playing: Structs in Rust - Full Crash Rust Tutorial for Beginners

This lesson is about Structs in Rust. Structs are a way to create more complex data types in Rust. They are similar to tuples, but with a few differences. You can name the fields of a struct (and you can also define methods for structs). You can also make a struct mutable by using the mut keyword. You can create a function that returns a struct instance. You can create a new instance of a struct using another instance with the struct update syntax. You can define tuple structs and unit-like structs. Github link: https://github.com/FrancescoXX/rust-structs 🦀 All the lessons: Installation and Hello World: https://youtu.be/R33h77nrMqc Variables: https://youtu.be/6Ag0MZUlvBE Data Types: https://youtu.be/NyqJp5M3hRE Functions: https://youtu.be/hJLc2Zu405A Basic Control flow: https://youtu.be/2w_FTiD74JI Ownership: https://youtu.be/9VBLOwmNE1g References and Borrowing: https://youtu.be/Q_0yoX07Fhs Slices: https://youtu.be/dKymZbFp0ZQ Structs: https://youtu.be/PCjuO-Bv5FI Struct Example: https://youtu.be/mgK5LezkHl8 Methods: https://youtu.be/94iSHoKmPmY ALL THE LINKS HERE: https://francescociulla.com 0:00 Introduction to Structs in Rust 0:45 Definition and Basics 2:40 Mutable Structs 3:45 Build a Struct with a function 5:22 Struct instance from another instance 7:25 Tuple Structs 8:45 unit-like Structs


Tracks in this Playlist