-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
accessing private fields is not safe, and io isn't scary #26603
Conversation
r? @huonw (rust_highfive has picked a reviewer for you, use r? to override) |
@bors: r+ rollup |
📌 Commit 9001da6 has been approved by |
@@ -1047,11 +1047,8 @@ This is a list of behavior not considered *unsafe* in Rust terms, but that may | |||
be undesired. | |||
|
|||
* Deadlocks | |||
* Reading data from private fields (`std::repr`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does this interact with what it says 18 lines previously?
[Behavior considered undefined] Invalid values in primitive types, even in private fields/locals
Is it now ok in private fields, since private fields are not permitted to be read?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine to make a private mem::uninitialized
as long as a public consumer can't observe it. Making a bool = 3 is still invalid, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the difference between a private field bool = 3
, and the same field being mem::uninitialized
? Presumably it's essentially illegal to read such a thing in both cases, but they should be fine to be "write only".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I answered my own question why it's not a good idea to allow (see forum).
Quick poll of basically the entire core team says this is ok.
Quick poll of basically the entire core team says this is ok.