book icon indicating copy to clipboard operation
book copied to clipboard

The Rust Programming Language

Results 462 book issues
Sort by recently updated
recently updated
newest added
trafficstars

- [x] I have checked the latest `main` branch to see if this has already been fixed - [x] I have searched existing issues and pull requests for duplicates URL...

Noticed the slice definition in the first paragraph relies on the reader recalling: * what collections are * that the previous page ended stating slices are a kind of reference...

"this 4" refers to a 4 mentioned in a previous paragraph. Changing the wording to mention the `size` parameter, instead of "this 4" makes it clear what this paragraph is...

Since crate users can still see and use the internal structure of the crate, it is confusing to use the word "instead" here.

_copy trait is not only about bit copying only from stack_ **Suggested changes made**

It seems adding the word 'it' will fix grammar and improve the readability of the sentence it (pun intended) is a part of.

The inlined format arguments are a bit easier to understand, especially for those familiar with the other languages (python, js). To avoid any `panic!("{foo}")` issues, migrated to 2021 edition

This is not asynchronous, since you haven't actually used the async/await syntax. You have multiple threads (thus multithreaded) but each thread doesn't encounter a `Future` with missing values that makes...