Skip to content

Commit 6398883

Browse files
committed
Translate a list
1 parent 2cdd812 commit 6398883

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/send-and-sync.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ captures this through the `Send` and `Sync` traits.
1616
型がこのアクセスを管理するために同期を行なわない限り、これは絶対スレッドセーフでは
1717
ありません。 Rust ではこれを、 `Send` トレイトと `Sync` トレイトでキャプチャしています。
1818

19+
<!--
1920
* A type is Send if it is safe to send it to another thread.
2021
* A type is Sync if it is safe to share between threads (`&T` is Send).
22+
-->
23+
24+
* ある型を他のスレッドに安全に送信できる場合、その型は Send を実装します。
25+
* ある型をスレッド間で安全に共有できる場合、その型は Sync を実装します (`&T` は Send を実装します) 。
2126

2227
Send and Sync are fundamental to Rust's concurrency story. As such, a
2328
substantial amount of special tooling exists to make them work right. First and

0 commit comments

Comments
 (0)