A collection of the completed exercise script files created when learning the Rust Language.
The resources used in learning are as follows:
-
The Rust Programming Language - a starter text endorsed by the Rust foundation.
-
Command-Line Rust: A Project-Based Primer for Writing Rust CLIs - teaches Rust using a single small, complete, focused program in each chapter.
-
Programming Rust: Fast, Safe Systems Development - A comprehensive text going over the full Rust language.
-
Rust in Action - Introduces the Rust programming language by exploring numerous systems programming concepts and techniques.
-
Practical Rust Projects - Go beyond the basics and build complete applications using the Rust programming language, updated for Rust 2021 edition. The applications you'll build over the course of this book include a high-performance web client, an embedded computer (for a robot, for example), a game, a serverless web app, and an application that incorporates AI and machine learning.
Some viable books to use in future learning:
-
Hands-on Rust: Effective Learning through 2D Game Development and Play - Each chapter in this book presents hands-on, practical projects ranging from “Hello, World” to building a full dungeon crawler game.
-
Effective Rust: 35 Specific Ways to Improve Your Rust Code - By focusing on the conceptual differences between Rust and other compiled languages, and by providing specific recommendations that programmers can easily follow, Effective Rust will soon have you writing fluent Rust, not just badly translated C++.
-
Write Powerful Rust Macros - Supercharge your code with macros—the real power tools of the Rust programming language!
-
Code Like a Pro in Rust - Code Like a Pro in Rust dives deep into memory management, asynchronous programming, and the core Rust skills that make you a Rust pro! Plus, you’ll find essential productivity techniques for Rust testing, tooling, and project management.
-
The Algorithm Design Manual - The reader-friendly The Algorithm Design Manual provides straightforward access to combinatorial algorithms technology, stressing design over analysis. The first part, Techniques, provides accessible instruction on methods for designing and analyzing computer algorithms. The second part, Resources, is intended for browsing and reference, and comprises the catalog of algorithmic resources, implementations and an extensive bibliography.
-
Rust Atomics and Locks - In this practical book, Mara Bos, team lead of the Rust library team, helps Rust programmers of all levels gain a clear understanding of low-level concurrency. You’ll learn everything about atomics and memory ordering and how they're combined with basic operating system APIs to build common primitives like mutexes and condition variables. Once you’re done, you’ll have a firm grasp of how Rust’s memory model, the processor, and the role of the operating system all fit together.