We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aebdac commit 7b19574Copy full SHA for 7b19574
src/doc/tutorial.md
@@ -2095,6 +2095,10 @@ and may not be overridden:
2095
Types are sendable
2096
unless they contain managed boxes, managed closures, or references.
2097
2098
+* `Share` - Types that are *threadsafe*
2099
+These are types that are safe to be used across several threads with access to
2100
+a `&T` pointer. `MutexArc` is an example of a *sharable* type with internal mutable data.
2101
+
2102
* `Freeze` - Constant (immutable) types.
2103
These are types that do not contain anything intrinsically mutable.
2104
Intrinsically mutable values include `Cell` in the standard library.
0 commit comments