File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -706,6 +706,14 @@ impl From<Box<CStr>> for CString {
706
706
}
707
707
}
708
708
709
+ #[ stable( feature = "more_box_slice_clone" , since = "1.29.0" ) ]
710
+ impl Clone for Box < CStr > {
711
+ #[ inline]
712
+ fn clone ( & self ) -> Self {
713
+ ( * * self ) . into ( )
714
+ }
715
+ }
716
+
709
717
#[ stable( feature = "box_from_c_string" , since = "1.20.0" ) ]
710
718
impl From < CString > for Box < CStr > {
711
719
#[ inline]
Original file line number Diff line number Diff line change @@ -628,6 +628,14 @@ impl From<OsString> for Box<OsStr> {
628
628
}
629
629
}
630
630
631
+ #[ stable( feature = "more_box_slice_clone" , since = "1.29.0" ) ]
632
+ impl Clone for Box < OsStr > {
633
+ #[ inline]
634
+ fn clone ( & self ) -> Self {
635
+ self . to_os_string ( ) . into_boxed_os_str ( )
636
+ }
637
+ }
638
+
631
639
#[ stable( feature = "shared_from_slice2" , since = "1.24.0" ) ]
632
640
impl From < OsString > for Arc < OsStr > {
633
641
#[ inline]
Original file line number Diff line number Diff line change @@ -1410,6 +1410,14 @@ impl From<PathBuf> for Box<Path> {
1410
1410
}
1411
1411
}
1412
1412
1413
+ #[ stable( feature = "more_box_slice_clone" , since = "1.29.0" ) ]
1414
+ impl Clone for Box < Path > {
1415
+ #[ inline]
1416
+ fn clone ( & self ) -> Self {
1417
+ self . to_path_buf ( ) . into_boxed_path ( )
1418
+ }
1419
+ }
1420
+
1413
1421
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1414
1422
impl < ' a , T : ?Sized + AsRef < OsStr > > From < & ' a T > for PathBuf {
1415
1423
fn from ( s : & ' a T ) -> PathBuf {
You can’t perform that action at this time.
0 commit comments