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

Alternatively, could say, 'most of the values' in line with the first paragraph of the section.

- [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...

Example in Listing 15-16 calls `drop` instead of the `std::mem::drop` it is meant to introduce.

As per my understanding on how parallel thread execution works there is no guarantee that thread which outputted 1ˢᵗ is that one that executed such common command 1ˢᵗ in common...

> The other difference between mut and shadowing is that because we’re effectively creating a new variable when we use the let keyword again, we can change the type of...

- I have searched open and closed issues and pull requests for duplicates, using these search terms: - `is:issue translation` - I have checked the latest `main` branch to see...

Q for ourselves
Translations

I have been reading this phrase for 20 minutes and it is still hard for me to understand it. Is this a better word choice? Did I understand it correctly?

S-waiting-on-review

https://doc.rust-lang.org/book/ch19-04-advanced-types.html#the-never-type-that-never-returns > But what use is a type you can never create values for? Recall the code from Listing 2-5, part of the number guessing game; we’ve reproduced a bit...

Where it says: On Windows, enter the command .\main.exe instead of ./main: > rustc main.rs > .\main.exe Hello, world! the .\ is not needed. It works but it is a...