#learning
Read more stories on Hashnode
Articles with this tag
traits and generics · Generics allow us to replace specific types with a placeholder that represents multiple types to remove code duplication. We use...
Option In Rust, Option<T> is used in scenarios where there might not be a result to return. Here, T represents the data type of the data when a value...
Enumerations Enumerations, commonly referred to as enums, are a powerful and expressive feature in the Rust programming language. They allow you to...
Best Video Material [YouTube] 300 seconds of Rust - 5. Rust Ownership System Best Text Material The Rust Programming Language Comprehensive Rust:...
and database in general · Foreword: If you see that I'm wrong somewhere or if you are aware of any cool and valuable resources relevant to this topic,...
Repetition With Loops Rust has 3 kinds of loops - loop, while and for. Loop syntax: // for let counter = [10, 20, 30, 40, 50]; for c in counter { ...