@@ -1455,9 +1455,36 @@ where
1455
1455
}
1456
1456
}
1457
1457
1458
+ /// Specialization trait used for `From<&[T]>`.
1459
+ #[ cfg( not( no_global_oom_handling) ) ]
1460
+ trait BoxFromSlice < T > {
1461
+ fn from_slice ( slice : & [ T ] ) -> Self ;
1462
+ }
1463
+
1464
+ #[ cfg( not( no_global_oom_handling) ) ]
1465
+ impl < T : Clone > BoxFromSlice < T > for Box < [ T ] > {
1466
+ #[ inline]
1467
+ default fn from_slice ( slice : & [ T ] ) -> Self {
1468
+ slice. to_vec ( ) . into_boxed_slice ( )
1469
+ }
1470
+ }
1471
+
1472
+ #[ cfg( not( no_global_oom_handling) ) ]
1473
+ impl < T : Copy > BoxFromSlice < T > for Box < [ T ] > {
1474
+ #[ inline]
1475
+ fn from_slice ( slice : & [ T ] ) -> Self {
1476
+ let len = slice. len ( ) ;
1477
+ let buf = RawVec :: with_capacity ( len) ;
1478
+ unsafe {
1479
+ ptr:: copy_nonoverlapping ( slice. as_ptr ( ) , buf. ptr ( ) , len) ;
1480
+ buf. into_box ( slice. len ( ) ) . assume_init ( )
1481
+ }
1482
+ }
1483
+ }
1484
+
1458
1485
#[ cfg( not( no_global_oom_handling) ) ]
1459
1486
#[ stable( feature = "box_from_slice" , since = "1.17.0" ) ]
1460
- impl < T : Copy > From < & [ T ] > for Box < [ T ] > {
1487
+ impl < T : Clone > From < & [ T ] > for Box < [ T ] > {
1461
1488
/// Converts a `&[T]` into a `Box<[T]>`
1462
1489
///
1463
1490
/// This conversion allocates on the heap
@@ -1471,19 +1498,15 @@ impl<T: Copy> From<&[T]> for Box<[T]> {
1471
1498
///
1472
1499
/// println!("{boxed_slice:?}");
1473
1500
/// ```
1501
+ #[ inline]
1474
1502
fn from ( slice : & [ T ] ) -> Box < [ T ] > {
1475
- let len = slice. len ( ) ;
1476
- let buf = RawVec :: with_capacity ( len) ;
1477
- unsafe {
1478
- ptr:: copy_nonoverlapping ( slice. as_ptr ( ) , buf. ptr ( ) , len) ;
1479
- buf. into_box ( slice. len ( ) ) . assume_init ( )
1480
- }
1503
+ <Self as BoxFromSlice < T > >:: from_slice ( slice)
1481
1504
}
1482
1505
}
1483
1506
1484
1507
#[ cfg( not( no_global_oom_handling) ) ]
1485
1508
#[ stable( feature = "box_from_cow" , since = "1.45.0" ) ]
1486
- impl < T : Copy > From < Cow < ' _ , [ T ] > > for Box < [ T ] > {
1509
+ impl < T : Clone > From < Cow < ' _ , [ T ] > > for Box < [ T ] > {
1487
1510
/// Converts a `Cow<'_, [T]>` into a `Box<[T]>`
1488
1511
///
1489
1512
/// When `cow` is the `Cow::Borrowed` variant, this
0 commit comments