@@ -462,7 +462,7 @@ impl CString {
462
462
/// assert_eq!(c_str, CStr::from_bytes_with_nul(b"foo\0").unwrap());
463
463
/// ```
464
464
#[ inline]
465
- #[ unstable ( feature = "as_c_str" , issue = "40380 " ) ]
465
+ #[ stable ( feature = "as_c_str" , since = "1.20.0 " ) ]
466
466
pub fn as_c_str ( & self ) -> & CStr {
467
467
& * self
468
468
}
@@ -482,7 +482,7 @@ impl CString {
482
482
/// let boxed = c_string.into_boxed_c_str();
483
483
/// assert_eq!(&*boxed, CStr::from_bytes_with_nul(b"foo\0").unwrap());
484
484
/// ```
485
- #[ unstable ( feature = "into_boxed_c_str" , issue = "40380 " ) ]
485
+ #[ stable ( feature = "into_boxed_c_str" , since = "1.20.0 " ) ]
486
486
pub fn into_boxed_c_str ( self ) -> Box < CStr > {
487
487
unsafe { mem:: transmute ( self . into_inner ( ) ) }
488
488
}
@@ -1009,7 +1009,7 @@ impl CStr {
1009
1009
/// let boxed = c_string.into_boxed_c_str();
1010
1010
/// assert_eq!(boxed.into_c_string(), CString::new("foo").unwrap());
1011
1011
/// ```
1012
- #[ unstable ( feature = "into_boxed_c_str" , issue = "40380 " ) ]
1012
+ #[ stable ( feature = "into_boxed_c_str" , since = "1.20.0 " ) ]
1013
1013
pub fn into_c_string ( self : Box < CStr > ) -> CString {
1014
1014
unsafe { mem:: transmute ( self ) }
1015
1015
}
0 commit comments