Skip to content

Teach transmute_{ref,mut}! to handle slice DSTs #1924

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

Closed
wants to merge 3 commits into from

Conversation

joshlf
Copy link
Member

@joshlf joshlf commented Oct 16, 2024

TODO:

  • Figure out how to make this backwards-compatible (since current macros work with T: Sized, but T: Sized does not imply T: KnownLayout)
  • Make it so that Sized bounds are still enforced on older toolchains that don't support slice DST transmutes
  • Write safety comments
  • Get rid of now-unused macros and functions in util::macro_util

Makes progress on #1817

gherrit-pr-id: Ib4bc62202e0b3b09d155333b525087f7aa8f02c2

@joshlf
Copy link
Member Author

joshlf commented Mar 7, 2025

I wonder if we could use the autoref trick to get T: Sized to work. Specifically, we could provide one impl for T: Sized as the default, and then a fallback to T: KnownLayout

@jswrenn
Copy link
Collaborator

jswrenn commented Mar 7, 2025

I wonder if we could use the autoref trick to get T: Sized to work. Specifically, we could provide one impl for T: Sized as the default, and then a fallback to T: KnownLayout

Yes, I believe we can: https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=78af21ee715df8622ed1b28433a1d314

joshlf added 2 commits March 7, 2025 10:50
Makes progress on #1009

gherrit-pr-id: I3d825b6c6b99277c96d9fd6a6761bdfad2000473
This permits us to remove the `KnownLayout` bounds from
`Ptr::transmute`, and thus to remove `Ptr::transmute_sized` entirely.
This also allows us to remove the hand-rolled impl of `TryFromBytes` for
`ManuallyDrop<T>`, replacing it with an invocation of
`impl_for_transmute_from!`.

gherrit-pr-id: I090715fd9ed6f100fd35513b05054015621ecb9c
@jswrenn jswrenn force-pushed the transmute-ref-slice-dst branch 3 times, most recently from 778227e to ebfcd8b Compare March 7, 2025 21:05
TODO:
- Figure out how to make this backwards-compatible (since current macros
  work with `T: Sized`, but `T: Sized` does not imply `T: KnownLayout`)
- Make it so that `Sized` bounds are still enforced on older toolchains
  that don't support slice DST transmutes
- Write safety comments
- Get rid of now-unused macros and functions in util::macro_util

Makes progress on #1817

gherrit-pr-id: Ib4bc62202e0b3b09d155333b525087f7aa8f02c2
@jswrenn jswrenn force-pushed the transmute-ref-slice-dst branch from ebfcd8b to 9e9502a Compare March 7, 2025 21:15
@joshlf joshlf changed the base branch from v0.8.x to main March 7, 2025 21:19
@joshlf
Copy link
Member Author

joshlf commented Mar 7, 2025

Closing in favor of #2428

@joshlf joshlf closed this Mar 7, 2025
@joshlf joshlf deleted the transmute-ref-slice-dst branch March 7, 2025 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants