mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 15:06:06 +00:00
avoid transmuting Box when we can just cast raw pointers instead Always better to avoid a transmute, in particular when the layout assumptions it is making are not clearly documented. :)