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

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

I would gladly like to help with the translation of the Rust book to Serbian language.

Enhancement
blocked upstream
Translations

Language your translation is for Ukrainian URL to the repo where you're working: https://github.com/rust-lang-ua/rustbook_ukrainian Hi, our community [Rust Ukraine](https://github.com/rust-lang-ua) started to translate rust-book to Ukrainian, as current Ukrainian translation has...

Enhancement
blocked upstream
Translations

Hi there, I'm from Turkey. I'm an English teacher in Turkey. I have a translation team which consist of 7 English teachers. And we will be rewarded for each of...

Enhancement
blocked upstream
Translations

Can i fork and translate this book to Vietnamese version ? Current working: https://rust-vietnam.github.io/book/

Enhancement
blocked upstream
Translations

That "compare" should be "convert". at line No. 671.

Provide inclusion of the operators `!` and `?` for their use on auto traits. "Keywords" and "Operators" serve as a central index the documentation and therefore must be comprehensive. In...

Per https://github.com/rust-lang/book/issues/3047, use captured identifiers instead of the positional ones for some examples, e.g. ```diff - println!("Worker {} got a job; executing.", id); + println!("Worker {id} got a job; executing.");...

This PR removes superficial differences between listings the reader is asked to compare. Previously, [9-6](https://github.com/rust-lang/book/blob/main/listings/ch09-error-handling/listing-09-06/src/main.rs#L3) used the style ``` use std::io::{self, Read}; ``` while [9-7](https://github.com/rust-lang/book/blob/main/listings/ch09-error-handling/listing-09-07/src/main.rs#L3) and [9-8](https://github.com/rust-lang/book/blob/main/listings/ch09-error-handling/listing-09-08/src/main.rs#L3) used ``` use...