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

From the discussion in #63.

It would be great to support translating the course into other languages. I suggest doing this with the infrastructure I wrote here: https://github.com/rust-lang/mdBook/pull/1864. We don't need to wait for this...

The `/print.html` page is concatenates all pages in the book and can be reached from the printer icon in the top-right corner. On this page, we will have many speaker...

I think we need a chapter “before the course” which gives people some background information about how to run the course. This is the start of this chapter, we might...

This book could potentially benefit from using the [mdbook-quiz](https://github.com/willcrichton/mdbook-quiz/) component to provide interactive quizzes that test readers' comprehension of the material. You could consider reusing the existing quizzes developed for...

Two examples may print either `Ok(username)` or `Err(error)`. This commit clarifies this fact. This is not so much a fix as a way to not confuse users who may not...

I am trying to describe the problem lifetimes solve. It may seem they are complex and useless, but the paragraph starts from the problem Rust cannot solve on it's own...

Further clarifying that Rust either does RVO or memcpy, both as efficient as it gets.