Skip to content

Commit cdff2f3

Browse files
committed
impl Clone for Box<CStr>, Box<OsStr>, Box<Path>
Implements #51908.
1 parent 5fdcd3a commit cdff2f3

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

src/libstd/ffi/c_str.rs

+8
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,14 @@ impl From<Box<CStr>> for CString {
706706
}
707707
}
708708

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+
709717
#[stable(feature = "box_from_c_string", since = "1.20.0")]
710718
impl From<CString> for Box<CStr> {
711719
#[inline]

src/libstd/ffi/os_str.rs

+8
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,14 @@ impl From<OsString> for Box<OsStr> {
628628
}
629629
}
630630

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+
631639
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
632640
impl From<OsString> for Arc<OsStr> {
633641
#[inline]

src/libstd/path.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1410,6 +1410,14 @@ impl From<PathBuf> for Box<Path> {
14101410
}
14111411
}
14121412

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+
14131421
#[stable(feature = "rust1", since = "1.0.0")]
14141422
impl<'a, T: ?Sized + AsRef<OsStr>> From<&'a T> for PathBuf {
14151423
fn from(s: &'a T) -> PathBuf {

0 commit comments

Comments
 (0)