We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Send
Sync
1 parent 46d7ba3 commit f8f42a7Copy full SHA for f8f42a7
reference.md
@@ -3959,6 +3959,16 @@ the top-level type for the implementation of the called method. If no such metho
3959
found, `.deref()` is called and the compiler continues to search for the method
3960
implementation in the returned type `U`.
3961
3962
+## The `Send` trait
3963
+
3964
+The `Send` trait indicates that a value of this type is safe to send from one
3965
+thread to another.
3966
3967
+## The 'Sync' trait
3968
3969
+The 'Sync' trait indicates that a value of this type is safe to share between
3970
+multiple threads.
3971
3972
# Memory model
3973
3974
A Rust program's memory consists of a static set of *items* and a *heap*.
0 commit comments