Created
January 6, 2015 06:57
-
-
Save brson/8f8ebec710183f4378ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* The `Copy` trait no longer implemented automatically and `Sync` | |
and `Share` aro no longer implemented automatically for types | |
containing unsafe pointers. `Sync` and `Share` are now 'unsafe | |
traits' for which implementations require an `unsafe impl` | |
declaration. These changes are intended to prevent some footguns | |
and are collectively known as [opt-in built-in traits][oibit] | |
(though `Sync` and `Share` will soon become pure library types | |
unknown to the compiler). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment