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
1010concurrent code at compile time.
1111
1212Before 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.
1819
1920## Background: ` Send ` and ` Sync `
2021
You can’t perform that action at this time.
0 commit comments