Skip to content

Commit 031bad4

Browse files
Merge pull request #854 from AloeareV/Unpin
Added Unpin to list of Auto Traits
2 parents b329ce3 + fcdc0ca commit 031bad4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/special-types-and-traits.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ immutable [`static` items].
9898

9999
## Auto traits
100100

101-
The [`Send`], [`Sync`], [`UnwindSafe`], and [`RefUnwindSafe`] traits are _auto
101+
The [`Send`], [`Sync`], [`Unpin`], [`UnwindSafe`], and [`RefUnwindSafe`] traits are _auto
102102
traits_. Auto traits have special properties.
103103

104104
If no explicit implementation or negative implementation is written out for an
@@ -157,6 +157,7 @@ compiler, not by [implementation items].
157157
[`std::ops`]: ../std/ops/index.html
158158
[`UnwindSafe`]: ../std/panic/trait.UnwindSafe.html
159159
[`Sync`]: ../std/marker/trait.Sync.html
160+
[`Unpin`]: ../std/marker/trait.Unpin.html
160161

161162
[Arrays]: types/array.md
162163
[call expressions]: expressions/call-expr.md

0 commit comments

Comments
 (0)