Skip to content

Commit cbfce40

Browse files
committed
std: Stabilize CString/OsString/PathBuf extra methods
Stabilizes: * `CString::as_c_str` * `CString::into_boxed_c_str` * `CStr::into_c_string` * `OsString::into_boxed_os_str` * `OsStr::into_os_string` * `PathBuf::into_boxed_path` * `PathBuf::into_path_buf` Closes #40380
1 parent 46de2af commit cbfce40

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/libstd/ffi/c_str.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ impl CString {
462462
/// assert_eq!(c_str, CStr::from_bytes_with_nul(b"foo\0").unwrap());
463463
/// ```
464464
#[inline]
465-
#[unstable(feature = "as_c_str", issue = "40380")]
465+
#[stable(feature = "as_c_str", since = "1.20.0")]
466466
pub fn as_c_str(&self) -> &CStr {
467467
&*self
468468
}
@@ -482,7 +482,7 @@ impl CString {
482482
/// let boxed = c_string.into_boxed_c_str();
483483
/// assert_eq!(&*boxed, CStr::from_bytes_with_nul(b"foo\0").unwrap());
484484
/// ```
485-
#[unstable(feature = "into_boxed_c_str", issue = "40380")]
485+
#[stable(feature = "into_boxed_c_str", since = "1.20.0")]
486486
pub fn into_boxed_c_str(self) -> Box<CStr> {
487487
unsafe { mem::transmute(self.into_inner()) }
488488
}
@@ -1009,7 +1009,7 @@ impl CStr {
10091009
/// let boxed = c_string.into_boxed_c_str();
10101010
/// assert_eq!(boxed.into_c_string(), CString::new("foo").unwrap());
10111011
/// ```
1012-
#[unstable(feature = "into_boxed_c_str", issue = "40380")]
1012+
#[stable(feature = "into_boxed_c_str", since = "1.20.0")]
10131013
pub fn into_c_string(self: Box<CStr>) -> CString {
10141014
unsafe { mem::transmute(self) }
10151015
}

src/libstd/ffi/os_str.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl OsString {
260260
///
261261
/// let b: Box<OsStr> = s.into_boxed_os_str();
262262
/// ```
263-
#[unstable(feature = "into_boxed_os_str", issue = "40380")]
263+
#[stable(feature = "into_boxed_os_str", since = "1.20.0")]
264264
pub fn into_boxed_os_str(self) -> Box<OsStr> {
265265
unsafe { mem::transmute(self.inner.into_box()) }
266266
}
@@ -511,7 +511,7 @@ impl OsStr {
511511
///
512512
/// [`Box`]: ../boxed/struct.Box.html
513513
/// [`OsString`]: struct.OsString.html
514-
#[unstable(feature = "into_boxed_os_str", issue = "40380")]
514+
#[stable(feature = "into_boxed_os_str", since = "1.20.0")]
515515
pub fn into_os_string(self: Box<OsStr>) -> OsString {
516516
let inner: Box<Slice> = unsafe { mem::transmute(self) };
517517
OsString { inner: Buf::from_box(inner) }

src/libstd/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ impl PathBuf {
13271327
///
13281328
/// [`Box`]: ../../std/boxed/struct.Box.html
13291329
/// [`Path`]: struct.Path.html
1330-
#[unstable(feature = "into_boxed_path", issue = "40380")]
1330+
#[stable(feature = "into_boxed_path", since = "1.20.0")]
13311331
pub fn into_boxed_path(self) -> Box<Path> {
13321332
unsafe { mem::transmute(self.inner.into_boxed_os_str()) }
13331333
}
@@ -2300,7 +2300,7 @@ impl Path {
23002300
///
23012301
/// [`Box`]: ../../std/boxed/struct.Box.html
23022302
/// [`PathBuf`]: struct.PathBuf.html
2303-
#[unstable(feature = "into_boxed_path", issue = "40380")]
2303+
#[stable(feature = "into_boxed_path", since = "1.20.0")]
23042304
pub fn into_path_buf(self: Box<Path>) -> PathBuf {
23052305
let inner: Box<OsStr> = unsafe { mem::transmute(self) };
23062306
PathBuf { inner: OsString::from(inner) }

0 commit comments

Comments
 (0)