-
Notifications
You must be signed in to change notification settings - Fork 51
Frequently requested changes: add bypassing visibility #323
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Open
mejrs
wants to merge
2
commits into
rust-lang:master
Choose a base branch
from
mejrs:privacy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -214,6 +214,29 @@ of tail or internal padding, as they can be reused due to the lack of a possible | |||||||||||||
|
||||||||||||||
Cross-referencing to other discussions: | ||||||||||||||
|
||||||||||||||
* https://github.com/rust-lang/rfcs/issues/1397 | ||||||||||||||
* https://github.com/rust-lang/rust/issues/17027 | ||||||||||||||
* https://github.com/rust-lang/unsafe-code-guidelines/issues/176 | ||||||||||||||
* <https://github.com/rust-lang/rfcs/issues/1397> | ||||||||||||||
* <https://github.com/rust-lang/rust/issues/17027> | ||||||||||||||
* <https://github.com/rust-lang/unsafe-code-guidelines/issues/176> | ||||||||||||||
|
||||||||||||||
## A way to bypass visibility, including an `unsafe` bypass | ||||||||||||||
|
||||||||||||||
Items are only accessible if they are marked `pub` or re-exported as such; | ||||||||||||||
they are otherwise private by default. People sometimes wish to break that | ||||||||||||||
rule to access internals of libraries they're using, for example to access | ||||||||||||||
private fields of a type or to call private functions. | ||||||||||||||
|
||||||||||||||
This could break invariants assumed by the crate's author, which, if any | ||||||||||||||
unsafe code depends on those, could lead to undefined behavior. | ||||||||||||||
|
||||||||||||||
More importantly, allowing people to violate privacy would destroy SemVer. | ||||||||||||||
If people can access and use implementation details of other crates then | ||||||||||||||
that means that almost any change is now a breaking change. This would lead | ||||||||||||||
to widespread fallout across the crate ecosystem. | ||||||||||||||
Comment on lines
+231
to
+234
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
||||||||||||||
Making it `unsafe` does nothing to prevent these issues. `unsafe` is | ||||||||||||||
used to deal with memory safety problems and it is not in any way useful to | ||||||||||||||
deal with SemVer concerns. | ||||||||||||||
Comment on lines
+236
to
+238
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
||||||||||||||
Forking a crate (to insert the necessary `pub`s) does not have these | ||||||||||||||
problems. As such, a better way to achieve this would be to make patch | ||||||||||||||
dependencies more ergonomic to use and maintain. | ||||||||||||||
Comment on lines
+240
to
+242
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This line doesn't read correctly to me as stated, i.e. "or re-exported as such" seems too strong. E.g.: