This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,12 @@ system is up to the task, and gives you powerful ways to reason about
10
10
concurrent code at compile time.
11
11
12
12
Before we talk about the concurrency features that come with Rust, it's important
13
- to understand something: Rust is low-level enough that all of this is provided
14
- by the standard library, not by the language. This means that if you don't like
15
- some aspect of the way Rust handles concurrency, you can implement an alternative
16
- way of doing things. [ mio] ( https://github.com/carllerche/mio ) is a real-world
17
- example of this principle in action.
13
+ to understand something: Rust is low-level enough that the vast majority of
14
+ this is provided by the standard library, not by the language. This means that
15
+ if you don't like some aspect of the way Rust handles concurrency, you can
16
+ implement an alternative way of doing things.
17
+ [ mio] ( https://github.com/carllerche/mio ) is a real-world example of this
18
+ principle in action.
18
19
19
20
## Background: ` Send ` and ` Sync `
20
21
You can’t perform that action at this time.
0 commit comments