Skip to content

Commit 99bad50

Browse files
committed
Translate a paragraph
1 parent 78a980f commit 99bad50

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/send-and-sync.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,17 @@ Send と Sync は Rust の並行性の基本です。したがって、これら
4343
これらのトレイトが、型を実装するものが持っているべき intrinsic の特性を持っているということを
4444
単に意味します。 Send や Sync が正しく実装されていないと、未定義動作を引き起こします。
4545

46+
<!--
4647
Send and Sync are also automatically derived traits. This means that, unlike
4748
every other trait, if a type is composed entirely of Send or Sync types, then it
4849
is Send or Sync. Almost all primitives are Send and Sync, and as a consequence
4950
pretty much all types you'll ever interact with are Send and Sync.
51+
-->
52+
53+
Send や Sync はまた、自動的に継承されるトレイトです。これはつまり、他のすべてのトレイトとは
54+
違い、もしある型が Send や Sync を実装している型だけで構成されている場合、その型は Send や
55+
Sync を実装しています。ほとんどすべてのプリミティブ型は Send や Sync を実装しています。
56+
そして結果的に、あなたが扱うかなり多くの型は、 Send や Sync を実装しています。
5057

5158
Major exceptions include:
5259

0 commit comments

Comments
 (0)