-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Convert Intos to Froms. #42227
Convert Intos to Froms. #42227
Conversation
r? @BurntSushi (rust_highfive has picked a reviewer for you, use r? to override) |
As with #42129, I'd still feel better with a crater run. |
Infra team is experimenting.... @bors try |
Convert Intos to Froms. This is a resubmission of #42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
💔 Test failed - status-travis |
@bors retry travis cancelled one of the builds |
⌛ Trying commit 30bbcef with merge 98629a9... |
💔 Test failed - status-travis |
Intentionally canceled build -- we need to land another PR before try builds make sense. |
@bors try Getting artifacts for cargobomb. |
Oh, I guess it needs to retry try? @bors retry |
⌛ Trying commit 30bbcef with merge 0964ee3... |
@bors retry |
I've deployed a new build of crater. Will try this one. |
Messed up the previous commands. Here are the new jobs: |
Isn't @aturon on vacation right now? I think this PR has been open long enough that we'll just wait for him for the final signoff. |
☔ The latest upstream changes (presumably #42648) made this pull request unmergeable. Please resolve the merge conflicts. |
Small nudge to point out that this can add back the |
Rebased. I've submitted the |
☔ The latest upstream changes (presumably #42716) made this pull request unmergeable. Please resolve the merge conflicts. |
Convert `Into<Box<[T]>> for Vec<T>` into `From<Vec<T>> for Box<[T]>` As the `collections` crate has been merged into `alloc` in rust-lang#42648 this impl is now possible. This is the final part of rust-lang#42129 missing from rust-lang#42227.
@aturon I think this is ready for merge but not quite sure... |
I've pinged @aturon, but I suspect he's not going to get to this until next week. |
@bors: r+ rollup Thanks! |
📌 Commit 0d885ef has been approved by |
Convert Intos to Froms. This is a resubmission of rust-lang#42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
Convert Intos to Froms. This is a resubmission of rust-lang#42129 without `impl<T> From<Vec<T>> for Box<[T]>`.
This is a resubmission of #42129 without
impl<T> From<Vec<T>> for Box<[T]>
.