comprehensive-rust icon indicating copy to clipboard operation
comprehensive-rust copied to clipboard

This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.

Results 608 comprehensive-rust issues
Sort by recently updated
recently updated
newest added

Suggestion for a few discussion points that I think could be useful :)

I can't find any way to open the speaker notes again after closing them once. Steps to reproduce: 1. Go to https://google.github.io/comprehensive-rust/. 2. Click the link to open speaker notes...

bug
good first issue

We should write a chapter about async Rust. This would be a good alternative to the Android part on Day 4. A possible agenda could look like this: * Introductory...

good first issue

mdbook generates a `404.html` page for us and this is used by GitHub Pages when it shows a 404 error. However, the page fails to load its resources (CSS, images,...

We currently have a number of code blocks marked with `compile_fail`: this is often because they depend on third-party crates which aren't available when running `mdbook test`. We should look...

good first issue

> Actually I think we need more explanation about `why we need` and `when to use`. Rust is built with years of experience in software engineering but not every learner...

good first issue

Adding a paragraph explaining that unsafe code is not necessary broken or evil, but it is a mode where compiler safety features are off.

Adding a speaker note that `Result` documentation is a recommended read.

Adding more speaker notes about `anyhow`.

Adding an extra speaker note why `impl Display` is used very appropriately here and what would go wrong if we tried `T: Display`.