Rust by example - Getting Started: Resources
Note: Read the offical references to get the most updated information.
Getting Started: Resources
Course
- [OFFICIAL] Rust by Example shows you examples of the most common things you will be writing in Rust.
- [OFFICIAL] Rustlings Small exercises to get you used to reading and writing Rust code.
- [OFFICIAL] Rust by Practice
- Comprehensive Rust, by Google.
- Into_rust() Screencasts for learning Rust.
- Effective Rust: A collection of articles on writing effective Rust code.
- Exercism track.
Books
- The Rust Programming Language, by Steve Klabnik and Carol Nichols. “The Book”, check the interactive version here.
- Command Line Book Writing command-line applications in Rust.
- Rust Cookbook Collection of simple examples that demonstrate good practices.
- Rust Design Patterns Collection of Rust design patterns.
- WebAssembly Book Building WebAssembly apps with Rust.
Core Docs
- std library The Rust Standard Library APIs.
- edition guide Guide to the Rust editions.
- cargo book Guide to Rust’s package manager and build system.
- rustdoc book Guide to writing documentation for your Rust crate.
- rustc book Guide to the Rust compiler.
- compiler error index Guide to Rust’s toolchain manager.
- rust reference The Rust Reference Manual.
- the rustonomicon The Dark Arts of Advanced and Unsafe Rust Programming.
- The Unstable Book The Book about all the unstable features in Rust.
Leave a Comment