-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Add From
impls for wrapper types
#146013
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
base: master
Are you sure you want to change the base?
Add From
impls for wrapper types
#146013
Conversation
- `From<T> for ThinBox<T>` - `From<T> for UniqueRc<T>` - `From<T> for UniqueArc<T>` - `From<T> for ManuallyDrop<T>` - `From<T> for AssertUnwindSafe<T>`
rustbot has assigned @Mark-Simulacrum. Use |
@rustbot label +needs-crater |
Error: Label needs-crater can only be set by Rust team members Please file an issue on GitHub at triagebot if there's a problem with this bot, or reach out on #triagebot on Zulip. |
This comment has been minimized.
This comment has been minimized.
@bors try |
This comment has been minimized.
This comment has been minimized.
Add `From` impls for wrapper types
@craterbot check |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
From<T> for ManuallyDrop<T>
From<T> for AssertUnwindSafe<T>
From<T> for LazyCell<T, F>
From<T> for LazyLock<T, F>
From<T> for ThinBox<T>
(unstable)From<T> for UniqueRc<T>
(unstable)From<T> for UniqueArc<T>
(unstable)@rustbot label T-libs-api needs-fcp
Also needs a crater run, as the insta-stable impls are technically breaking changes.