1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-31 14:47:34 +02:00

12 lines
411 B
Markdown
Raw Normal View History

2022-12-21 16:36:30 +01:00
# `Send` and `Sync`
How does Rust know to forbid shared access across thread? The answer is in two traits:
* [`Send`][1]: a type `T` is `Send` if it is safe to move a `T` across a thread
boundary.
* [`Sync`][2]: a type `T` is `Sync` if it is safe to move a `&T` across a thread
boundary.
[1]: https://doc.rust-lang.org/std/marker/trait.Send.html
[2]: https://doc.rust-lang.org/std/marker/trait.Sync.html