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 7ef0217 commit d9f70b3Copy full SHA for d9f70b3
text/0000-pin_and_move.md
@@ -35,9 +35,9 @@ This new auto trait is added to the `core::marker` and `std::marker` modules:
35
pub unsafe auto trait Move { }
36
```
37
38
-A type implements `Move` if in its stack representation, it contains internal
39
-references to other positions within its stack representation. Nearly every
40
-type in Rust is `Move`.
+A type implements `Move` if in its stack representation, it does not contain
+internal references to other positions within its stack representation. Nearly
+every type in Rust is `Move`.
41
42
Positive impls of `Move` are added for types which contain pointers to generic
43
types, but do not contain those types in their stack representation, e.g:
0 commit comments