Update the stable attributes to use the current nightly version number
This commit is contained in:
@@ -682,7 +682,7 @@ impl Borrow<CStr> for CString {
|
||||
fn borrow(&self) -> &CStr { self }
|
||||
}
|
||||
|
||||
#[stable(feature = "cstring_from_cow_cstr", since = "1.28.0")]
|
||||
#[stable(feature = "cstring_from_cow_cstr", since = "1.27.0")]
|
||||
impl<'a> From<Cow<'a, CStr>> for CString {
|
||||
#[inline]
|
||||
fn from(s: Cow<'a, CStr>) -> Self {
|
||||
@@ -714,7 +714,7 @@ impl From<CString> for Box<CStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_cstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_cstr", since = "1.27.0")]
|
||||
impl<'a> From<CString> for Cow<'a, CStr> {
|
||||
#[inline]
|
||||
fn from(s: CString) -> Cow<'a, CStr> {
|
||||
@@ -722,7 +722,7 @@ impl<'a> From<CString> for Cow<'a, CStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_cstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_cstr", since = "1.27.0")]
|
||||
impl<'a> From<&'a CStr> for Cow<'a, CStr> {
|
||||
#[inline]
|
||||
fn from(s: &'a CStr) -> Cow<'a, CStr> {
|
||||
@@ -730,7 +730,7 @@ impl<'a> From<&'a CStr> for Cow<'a, CStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_cstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_cstr", since = "1.27.0")]
|
||||
impl<'a> From<&'a CString> for Cow<'a, CStr> {
|
||||
#[inline]
|
||||
fn from(s: &'a CString) -> Cow<'a, CStr> {
|
||||
|
||||
@@ -664,7 +664,7 @@ impl<'a> From<&'a OsStr> for Rc<OsStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_osstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_osstr", since = "1.27.0")]
|
||||
impl<'a> From<OsString> for Cow<'a, OsStr> {
|
||||
#[inline]
|
||||
fn from(s: OsString) -> Cow<'a, OsStr> {
|
||||
@@ -672,7 +672,7 @@ impl<'a> From<OsString> for Cow<'a, OsStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_osstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_osstr", since = "1.27.0")]
|
||||
impl<'a> From<&'a OsStr> for Cow<'a, OsStr> {
|
||||
#[inline]
|
||||
fn from(s: &'a OsStr) -> Cow<'a, OsStr> {
|
||||
@@ -680,7 +680,7 @@ impl<'a> From<&'a OsStr> for Cow<'a, OsStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_osstr", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_osstr", since = "1.27.0")]
|
||||
impl<'a> From<&'a OsString> for Cow<'a, OsStr> {
|
||||
#[inline]
|
||||
fn from(s: &'a OsString) -> Cow<'a, OsStr> {
|
||||
@@ -688,7 +688,7 @@ impl<'a> From<&'a OsString> for Cow<'a, OsStr> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "osstring_from_cow_osstr", since = "1.28.0")]
|
||||
#[stable(feature = "osstring_from_cow_osstr", since = "1.27.0")]
|
||||
impl<'a> From<Cow<'a, OsStr>> for OsString {
|
||||
#[inline]
|
||||
fn from(s: Cow<'a, OsStr>) -> Self {
|
||||
|
||||
@@ -1532,7 +1532,7 @@ impl<'a> From<PathBuf> for Cow<'a, Path> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "cow_from_pathbuf_ref", since = "1.28.0")]
|
||||
#[stable(feature = "cow_from_pathbuf_ref", since = "1.27.0")]
|
||||
impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
|
||||
#[inline]
|
||||
fn from(p: &'a PathBuf) -> Cow<'a, Path> {
|
||||
@@ -1540,7 +1540,7 @@ impl<'a> From<&'a PathBuf> for Cow<'a, Path> {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "pathbuf_from_cow_path", since = "1.28.0")]
|
||||
#[stable(feature = "pathbuf_from_cow_path", since = "1.27.0")]
|
||||
impl<'a> From<Cow<'a, Path>> for PathBuf {
|
||||
#[inline]
|
||||
fn from(p: Cow<'a, Path>) -> Self {
|
||||
|
||||
Reference in New Issue
Block a user