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.
1 parent 2cdd812 commit 6398883Copy full SHA for 6398883
src/send-and-sync.md
@@ -16,8 +16,13 @@ captures this through the `Send` and `Sync` traits.
16
型がこのアクセスを管理するために同期を行なわない限り、これは絶対スレッドセーフでは
17
ありません。 Rust ではこれを、 `Send` トレイトと `Sync` トレイトでキャプチャしています。
18
19
+<!--
20
* A type is Send if it is safe to send it to another thread.
21
* A type is Sync if it is safe to share between threads (`&T` is Send).
22
+-->
23
+
24
+* ある型を他のスレッドに安全に送信できる場合、その型は Send を実装します。
25
+* ある型をスレッド間で安全に共有できる場合、その型は Sync を実装します (`&T` は Send を実装します) 。
26
27
Send and Sync are fundamental to Rust's concurrency story. As such, a
28
substantial amount of special tooling exists to make them work right. First and
0 commit comments