# The Rust Programming Language ## Getting started - [Introduction](ch01-00-introduction.md) - [Installation](ch01-01-installation.md) - [Hello, World!](ch01-02-hello-world.md) - [Guessing Game Tutorial](ch02-00-guessing-game-tutorial.md) - [Common Programming Concepts](ch03-00-common-programming-concepts.md) - [Variables and Mutability](ch03-01-variables-and-mutability.md) - [Data Types](ch03-02-data-types.md) - [How Functions Work](ch03-03-how-functions-work.md) - [Comments](ch03-04-comments.md) - [Control Flow](ch03-05-control-flow.md) - [Understanding Ownership](ch04-00-understanding-ownership.md) - [What is Ownership?](ch04-01-what-is-ownership.md) - [References & Borrowing](ch04-02-references-and-borrowing.md) - [Slices](ch04-03-slices.md) - [Using Structs to Structure Related Data](ch05-00-structs.md) - [Defining and Instantiating Structs](ch05-01-defining-structs.md) - [An Example Program Using Structs](ch05-02-example-structs.md) - [Method Syntax](ch05-03-method-syntax.md) - [Enums and Pattern Matching](ch06-00-enums.md) - [Defining an Enum](ch06-01-defining-an-enum.md) - [The `match` Control Flow Operator](ch06-02-match.md) - [Concise Control Flow with `if let`](ch06-03-if-let.md) ## Basic Rust Literacy - [Modules](ch07-00-modules.md) - [`mod` and the Filesystem](ch07-01-mod-and-the-filesystem.md) - [Controlling Visibility with `pub`](ch07-02-controlling-visibility-with-pub.md) - [Referring to Names in Different Modules](ch07-03-importing-names-with-use.md) - [Common Collections](ch08-00-common-collections.md) - [Vectors](ch08-01-vectors.md) - [Strings](ch08-02-strings.md) - [Hash Maps](ch08-03-hash-maps.md) - [Error Handling](ch09-00-error-handling.md) - [Unrecoverable Errors with `panic!`](ch09-01-unrecoverable-errors-with-panic.md) - [Recoverable Errors with `Result`](ch09-02-recoverable-errors-with-result.md) - [To `panic!` or Not To `panic!`](ch09-03-to-panic-or-not-to-panic.md) - [Generic Types, Traits, and Lifetimes](ch10-00-generics.md) - [Generic Data Types](ch10-01-syntax.md) - [Traits: Defining Shared Behavior](ch10-02-traits.md) - [Validating References with Lifetimes](ch10-03-lifetime-syntax.md) - [Testing](ch11-00-testing.md) - [Writing tests](ch11-01-writing-tests.md) - [Running tests](ch11-02-running-tests.md) - [Test Organization](ch11-03-test-organization.md) - [An I/O Project: Building a Command Line Program](ch12-00-an-io-project.md) - [Accepting Command Line Arguments](ch12-01-accepting-command-line-arguments.md) - [Reading a File](ch12-02-reading-a-file.md) - [Refactoring to Improve Modularity and Error Handling](ch12-03-improving-error-handling-and-modularity.md) - [Developing the Library’s Functionality with Test Driven Development](ch12-04-testing-the-librarys-functionality.md) - [Working with Environment Variables](ch12-05-working-with-environment-variables.md) - [Writing Error Messages to Standard Error Instead of Standard Output](ch12-06-writing-to-stderr-instead-of-stdout.md) ## Thinking in Rust - [Functional Language Features: Iterators and Closures](ch13-00-functional-features.md) - [Closures: Anonymous Functions that Can Capture Their Environment](ch13-01-closures.md) - [Processing a Series of Items with Iterators](ch13-02-iterators.md) - [Improving Our I/O Project](ch13-03-improving-our-io-project.md) - [Comparing Performance: Loops vs. Iterators](ch13-04-performance.md) - [More about Cargo and Crates.io](ch14-00-more-about-cargo.md) - [Customizing Builds with Release Profiles](ch14-01-release-profiles.md) - [Publishing a Crate to Crates.io](ch14-02-publishing-to-crates-io.md) - [Cargo Workspaces](ch14-03-cargo-workspaces.md) - [Installing Binaries from Crates.io with `cargo install`](ch14-04-installing-binaries.md) - [Extending Cargo with Custom Commands](ch14-05-extending-cargo.md) - [Smart Pointers](ch15-00-smart-pointers.md) - [`Box` Points to Data on the Heap and Has a Known Size](ch15-01-box.md) - [The `Deref` Trait Allows Access to the Data Through a Reference](ch15-02-deref.md) - [The `Drop` Trait Runs Code on Cleanup](ch15-03-drop.md) - [`Rc`, the Reference Counted Smart Pointer](ch15-04-rc.md) - [`RefCell` and the Interior Mutability Pattern](ch15-05-interior-mutability.md) - [Creating Reference Cycles and Leaking Memory is Safe](ch15-06-reference-cycles.md) - [Fearless Concurrency](ch16-00-concurrency.md) - [Threads](ch16-01-threads.md) - [Message Passing](ch16-02-message-passing.md) - [Shared State](ch16-03-shared-state.md) - [Extensible Concurrency: `Sync` and `Send`](ch16-04-extensible-concurrency-sync-and-send.md) - [Is Rust an Object-Oriented Programming Language?](ch17-00-oop.md) - [What Does Object-Oriented Mean?](ch17-01-what-is-oo.md) - [Trait Objects for Using Values of Different Types](ch17-02-trait-objects.md) - [Object-Oriented Design Pattern Implementations](ch17-03-oo-design-patterns.md) ## Advanced Topics - [Patterns Match the Structure of Values](ch18-00-patterns.md) - [All the Places Patterns May be Used](ch18-01-all-the-places-for-patterns.md) - [Refutability: Whether a Pattern Might Fail to Match](ch18-02-refutability.md) - [All the Pattern Syntax](ch18-03-pattern-syntax.md) - [Advanced Features](ch19-00-advanced-features.md) - [Unsafe Rust](ch19-01-unsafe-rust.md) - [Advanced Lifetimes](ch19-02-advanced-lifetimes.md) - [Advanced Traits](ch19-03-advanced-traits.md) - [Advanced Types](ch19-04-advanced-types.md) - [Advanced Functions & Closures](ch19-05-advanced-functions-and-closures.md) - [Final Project: Building a Multithreaded Web Server](ch20-00-final-project-a-web-server.md) - [A Single Threaded Web Server](ch20-01-single-threaded.md) - [How Slow Requests Affect Throughput](ch20-02-slow-requests.md) - [Designing the Thread Pool Interface](ch20-03-designing-the-interface.md) - [Creating the Thread Pool and Storing Threads](ch20-04-storing-threads.md) - [Sending Requests to Threads Via Channels](ch20-05-sending-requests-via-channels.md) - [Graceful Shutdown and Cleanup](ch20-06-graceful-shutdown-and-cleanup.md) - [Appendix](appendix-00.md) - [A - Keywords](appendix-01-keywords.md) - [B - Operators and Symbols](appendix-02-operators.md) - [C - Derivable Traits](appendix-03-derivable-traits.md) - [D - Macros](appendix-04-macros.md) - [E - Translations](appendix-05-translation.md) - [F - Newest Features](appendix-06-newest-features.md)