1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-17 15:21:32 +02:00
comprehensive-rust/src/concurrency.md

9 lines
324 B
Markdown
Raw Normal View History

2022-12-21 17:36:30 +02:00
# Fearless Concurrency
Rust has full support for concurrency using OS threads with mutexes and
channels.
The Rust type system plays an important role in making many concurrency bugs
compile time bugs. This is often referred to as _fearless concurrency_ since you
2022-12-21 17:36:30 +02:00
can rely on the compiler to ensure correctness at runtime.