Links for Learning Rust
Topics:
- Rust Search Extension via @PeterKehl
- Links for Learning Rust via @mysteriouspants
- Links for Learning Embedded Rust via @jacobrosenthal
Rust Search Extension via @PeterKehl
Peter shared a helpful browser plugin called Rust Search Extension. It allows you to search docs, crates, builtin attributes, official books, and error codes from the address bar of your browser. Very handy!
Links for Learning Rust via @PeterKehl
- The Little Book of Rust Books: This book is a treasure-trove of Rust books in mdbook format
Links for Learning Rust via @mysteriouspants
-
If you want to get deeper into the borrow checker, Nell gave a repeat of a very good talk at the Seattle Rust Meetup last month about the guts of the borrow checker.
-
The Rust by Example Book is a collection of runnable examples that illustrate various Rust concepts and standard libraries
-
exercism.io has Rust exercises and mentoring
-
Jon Gjengset does Rust live-coding and has some great videos
Links for Learning Embedded Rust via @jacobrosenthal
- The Embedded Rust Book is an introductory book about using the Rust Programming Language on "Bare Metal" embedded systems, such as Microcontrollers
- The Rustonomicon: The Dark Arts of Unsafe Rust digs into all the awful details that you need to understand when writing Unsafe Rust programs
- The Rust Unstable Book has a section on inline assembly in Rust
- Rust on the Raspberry Pi is a collection repos for doing embedded Rust on a Raspberry Pi
Crates You Should Know
- structopt: Parse command line argument by defining a struct
- embedded-graphics: a 2D graphics library that is focused on memory constrained embedded devices