| Pathway | Description | Entry Point |
|---|---|---|
| Rust Story | An ebook-style narrative covering Rust from first principles through advanced topics. Seven chapters: Prologue, Models, Data, Operations, Structures, Libraries, References. Best for readers who want a complete, linear progression. | Prologue |
| Rust Bites | Sixty-plus focused pages each covering a single language feature or concept. Pages form an ordered sequence but also work as stand-alone references. The Pages menu lets you jump directly to any topic. | Introduction |
| Repositories | Documented Rust code repositories illustrating real programs - thread pools, blocking queues, message-passing communication, text search, logging, and more. Each page discusses the design and links to the GitHub source. | Repositories |
| Other Resources | Glossary, Flash Cards, References page and downloadable pdf files. |
RustTour.pdf RustModels.pdf RustErrorHandling.pdf |
| Resource | Description |
|---|---|
| The Rust Book | Official introductory book - thorough and authoritative. |
| Rust by Example | Language feature tour driven entirely by runnable code snippets. |
| std library docs | Complete reference for every type and function in the standard library. |
| Cheats.rs | Dense, well-organised cheat sheet covering the whole language with visual guides. |
| Rust Playground | Browser-based environment for compiling and running Rust snippets. |
| Track References page | Curated list of additional blogs, videos, and books from this site. |
| RustTour.pdf | Slide deck summarising essential Rust features. |
| RustErrorHandling.pdf | Slide deck covering Rust's error-handling mechanisms in depth. |
| Rust API Guidelines | Guidelines for crafting idiomatic Rust APIs, from the Rust team. |
| Rust Users Forum | Community forum - read, post questions, and browse discussions. |