@@ -198,8 +198,6 @@ impl str {
198
198
/// Basic usage:
199
199
///
200
200
/// ```
201
- /// #![feature(inherent_str_constructors)]
202
- ///
203
201
/// // some bytes, in a vector
204
202
/// let sparkle_heart = vec![240, 159, 146, 150];
205
203
///
@@ -213,8 +211,6 @@ impl str {
213
211
/// Incorrect bytes:
214
212
///
215
213
/// ```
216
- /// #![feature(inherent_str_constructors)]
217
- ///
218
214
/// // some invalid bytes, in a vector
219
215
/// let sparkle_heart = vec![0, 159, 146, 150];
220
216
///
@@ -227,8 +223,6 @@ impl str {
227
223
/// A "stack allocated string":
228
224
///
229
225
/// ```
230
- /// #![feature(inherent_str_constructors)]
231
- ///
232
226
/// // some bytes, in a stack-allocated array
233
227
/// let sparkle_heart = [240, 159, 146, 150];
234
228
///
@@ -237,7 +231,8 @@ impl str {
237
231
///
238
232
/// assert_eq!("💖", sparkle_heart);
239
233
/// ```
240
- #[ unstable( feature = "inherent_str_constructors" , issue = "131114" ) ]
234
+ #[ stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
235
+ #[ rustc_const_stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
241
236
#[ rustc_diagnostic_item = "str_inherent_from_utf8" ]
242
237
pub const fn from_utf8 ( v : & [ u8 ] ) -> Result < & str , Utf8Error > {
243
238
converts:: from_utf8 ( v)
@@ -250,8 +245,6 @@ impl str {
250
245
/// Basic usage:
251
246
///
252
247
/// ```
253
- /// #![feature(inherent_str_constructors)]
254
- ///
255
248
/// // "Hello, Rust!" as a mutable vector
256
249
/// let mut hellorust = vec![72, 101, 108, 108, 111, 44, 32, 82, 117, 115, 116, 33];
257
250
///
@@ -264,16 +257,14 @@ impl str {
264
257
/// Incorrect bytes:
265
258
///
266
259
/// ```
267
- /// #![feature(inherent_str_constructors)]
268
- ///
269
260
/// // Some invalid bytes in a mutable vector
270
261
/// let mut invalid = vec![128, 223];
271
262
///
272
263
/// assert!(str::from_utf8_mut(&mut invalid).is_err());
273
264
/// ```
274
265
/// See the docs for [`Utf8Error`] for more details on the kinds of
275
266
/// errors that can be returned.
276
- #[ unstable ( feature = "inherent_str_constructors" , issue = "131114 " ) ]
267
+ #[ stable ( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION " ) ]
277
268
#[ rustc_const_unstable( feature = "const_str_from_utf8" , issue = "91006" ) ]
278
269
#[ rustc_diagnostic_item = "str_inherent_from_utf8_mut" ]
279
270
pub const fn from_utf8_mut ( v : & mut [ u8 ] ) -> Result < & mut str , Utf8Error > {
@@ -294,8 +285,6 @@ impl str {
294
285
/// Basic usage:
295
286
///
296
287
/// ```
297
- /// #![feature(inherent_str_constructors)]
298
- ///
299
288
/// // some bytes, in a vector
300
289
/// let sparkle_heart = vec![240, 159, 146, 150];
301
290
///
@@ -307,7 +296,8 @@ impl str {
307
296
/// ```
308
297
#[ inline]
309
298
#[ must_use]
310
- #[ unstable( feature = "inherent_str_constructors" , issue = "131114" ) ]
299
+ #[ stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
300
+ #[ rustc_const_stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
311
301
#[ rustc_diagnostic_item = "str_inherent_from_utf8_unchecked" ]
312
302
pub const unsafe fn from_utf8_unchecked ( v : & [ u8 ] ) -> & str {
313
303
// SAFETY: converts::from_utf8_unchecked has the same safety requirements as this function.
@@ -324,16 +314,15 @@ impl str {
324
314
/// Basic usage:
325
315
///
326
316
/// ```
327
- /// #![feature(inherent_str_constructors)]
328
- ///
329
317
/// let mut heart = vec![240, 159, 146, 150];
330
318
/// let heart = unsafe { str::from_utf8_unchecked_mut(&mut heart) };
331
319
///
332
320
/// assert_eq!("💖", heart);
333
321
/// ```
334
322
#[ inline]
335
323
#[ must_use]
336
- #[ unstable( feature = "inherent_str_constructors" , issue = "131114" ) ]
324
+ #[ stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
325
+ #[ rustc_const_stable( feature = "inherent_str_constructors" , since = "CURRENT_RUSTC_VERSION" ) ]
337
326
#[ rustc_diagnostic_item = "str_inherent_from_utf8_unchecked_mut" ]
338
327
pub const unsafe fn from_utf8_unchecked_mut ( v : & mut [ u8 ] ) -> & mut str {
339
328
// SAFETY: converts::from_utf8_unchecked_mut has the same safety requirements as this function.
0 commit comments