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

the text refers to a field `filename` that does not exist in the code snippet, it probably intended to refer to `file_path`

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

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

When I run the [final webserver project](https://doc.rust-lang.org/book/ch20-03-graceful-shutdown-and-cleanup.html#signaling-to-the-threads-to-stop-listening-for-jobs), exactly as given in the book, it deadlocks for me. My setup is running the server in one shell and the following loop...

I mentioned the warning when compiling code from ch05-02, fixing the issue https://github.com/rust-lang/book/issues/3409.

After the line "When we entered *y in Listing 15-9, behind the scenes Rust actually ran this code:" the code sample goes: ``` *(y.deref()) ``` I understand this should be...

I came accross phrase > Then we can use the functionality of the `Display` trait on `Wrapper` type. , thinking through if `Display` implementation could be told **type**, but looking...

Fix typo in "summary" section by swapping ," -> ",

In ch18-03-pattern-syntax, discussion of listing 18-29 (@ Bindings), It might be useful to say whether the structure shorthand `Message::Hello { id } => {}` is in fact equivalent to `Message::Hello...