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 d6abb4a commit d126850Copy full SHA for d126850
src/phantom-data.md
@@ -89,11 +89,21 @@ struct Vec<T> {
89
}
90
```
91
92
+<!--
93
Unlike the previous example, it *appears* that everything is exactly as we
94
want. Every generic argument to Vec shows up in at least one field.
95
Good to go!
96
+-->
97
+
98
+前の例と違い、これは、全てが期待しているものと全く同じ*ように見えます*。
99
+Vec の全てのジェネリックな引数は少なくとも1つのフィールドに現れます。
100
+さあ準備完了!
101
102
103
Nope.
104
105
106
+いいえ。
107
108
The drop checker will generously determine that `Vec<T>` does not own any values
109
of type T. This will in turn make it conclude that it doesn't need to worry
0 commit comments