-
Notifications
You must be signed in to change notification settings - Fork 107
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
Traits other than NoCell
permit UnsafeCell
s
#682
Merged
Merged
Conversation
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
NoCell
permit UnsafeCells
NoCell
permit UnsafeCellsNoCell
permit UnsafeCell
s
4452fcf
to
76f7644
Compare
joshlf
commented
Dec 7, 2023
dd73d95
to
c56101f
Compare
7b6b5b5
to
68bbac7
Compare
jswrenn
requested changes
Dec 8, 2023
Previously, `FromZeros`, `FromBytes`, and `AsBytes` could not be implemented for types containing `UnsafeCell`s. This is a soundness precondition for some types of reference transmutations (notably transmuting either direction between `&[u8]` and `&T`). However, some of our machinery operates only on values (e.g. `transmute!`), and that machinery should in principle be able to support types which contain `UnsafeCell`s. In this commit, we remove the "no `UnsafeCell`" restriction from `FromZeros`, `FromBytes`, and `AsBytes`. We use the recently-added `NoCell` trait as a bound on individual functions and methods where `UnsafeCell`s would be unsound. This permits some APIs to support `UnsafeCell`s which could not previously support them. Closes #251
68bbac7
to
08a6028
Compare
jswrenn
approved these changes
Dec 8, 2023
11 tasks
joshlf
added a commit
that referenced
this pull request
Dec 8, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `ToBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `ToBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
joshlf
added a commit
that referenced
this pull request
Dec 11, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `IntoBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `IntoBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
joshlf
added a commit
that referenced
this pull request
Dec 11, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `IntoBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `IntoBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
joshlf
added a commit
that referenced
this pull request
Dec 11, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `IntoBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `IntoBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
joshlf
added a commit
that referenced
this pull request
Dec 11, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `IntoBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `IntoBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
github-merge-queue bot
pushed a commit
that referenced
this pull request
Dec 14, 2023
Previously, `T: AsBytes` indicated that `&T -> &[u8]` was a valid transformation. As of #682, `T: AsBytes` only indicates that `T -> [u8]` is a valid transformation. This slightly changes the meaning of `AsBytes` and makes `IntoBytes` a more appropriate name since it only permits value rather than reference transmutations. This also brings the pair of `FromBytes` and `IntoBytes` in line with the standard library `From` and `Into` traits from a naming perspective. Closes #695
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Previously,
FromZeros
,FromBytes
, andAsBytes
could not beimplemented for types containing
UnsafeCell
s. This is a soundnessprecondition for some types of reference transmutations (notably
transmuting either direction between
&[u8]
and&T
). However, some ofour machinery operates only on values (e.g.
transmute!
), and thatmachinery should in principle be able to support types which contain
UnsafeCell
s.In this commit, we remove the "no
UnsafeCell
" restriction fromFromZeros
,FromBytes
, andAsBytes
. We use the recently-addedNoCell
trait as a bound on individual functions and methods whereUnsafeCell
s would be unsound. This permits some APIs to supportUnsafeCell
s which could not previously support them.Closes #251