mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 11:23:03 +00:00
Rollup merge of #42717 - ollie27:into_to_from2, r=sfackler
Convert `Into<Box<[T]>> for Vec<T>` into `From<Vec<T>> for Box<[T]>` As the `collections` crate has been merged into `alloc` in #42648 this impl is now possible. This is the final part of #42129 missing from #42227.
This commit is contained in:
commit
dbe16e067f
@ -2124,10 +2124,12 @@ impl<T> From<Box<[T]>> for Vec<T> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "box_from_vec", since = "1.18.0")]
|
||||
impl<T> Into<Box<[T]>> for Vec<T> {
|
||||
fn into(self) -> Box<[T]> {
|
||||
self.into_boxed_slice()
|
||||
// note: test pulls in libstd, which causes errors here
|
||||
#[cfg(not(test))]
|
||||
#[stable(feature = "box_from_vec", since = "1.20.0")]
|
||||
impl<T> From<Vec<T>> for Box<[T]> {
|
||||
fn from(v: Vec<T>) -> Box<[T]> {
|
||||
v.into_boxed_slice()
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user