Rust by Practice is a learning resource and exercise platform that teaches Rust through hands-on examples, exercises, and projects.
The resource addresses the gap between learning Rust fundamentals and being ready to build real projects. It structures learning into three components per chapter: examples that demonstrate concepts, exercises that readers must make compile without errors or panics, and practice problems that apply those concepts. The exercises can be read, edited, and run online, making it accessible without local setup. The material covers a broad range of Rust topics including async/await, threading, synchronization primitives, performance optimization, standard library usage, toolchain knowledge, and data structures and algorithms.
Rust by Practice suits developers who learn best through guided practice rather than passive reading, and who want exposure to Rust's full feature set rather than just introductory material. The difficulty progression from easy to super hard means it can serve learners at different stages, though the overall difficulty level is positioned higher than basic tutorials. The online execution environment removes friction from trying examples. This approach differs from Rust by Example, which the resource acknowledges as a foundation but extends with more exercises and broader topic coverage.
The project maintains comprehensive exercise solutions alongside each problem, allowing learners to check their work. The material spans nearly all aspects of the Rust language and ecosystem rather than focusing on a narrow subset, providing systematic coverage of language features, concurrency patterns, and practical tooling knowledge.