File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,13 @@ pub trait ToOwned {
67
67
/// Basic usage:
68
68
///
69
69
/// ```
70
- /// # #![feature(toowned_clone_into)]
71
70
/// let mut s: String = String::new();
72
71
/// "hello".clone_into(&mut s);
73
72
///
74
73
/// let mut v: Vec<i32> = Vec::new();
75
74
/// [1, 2][..].clone_into(&mut v);
76
75
/// ```
77
- #[unstable (feature = "toowned_clone_into", reason = "recently added", issue = "41263 ")]
76
+ #[stable (feature = "toowned_clone_into", since = "1.63.0 ")]
78
77
fn clone_into(&self, target: &mut Self::Owned) {
79
78
*target = self.to_owned();
80
79
}
Original file line number Diff line number Diff line change 298
298
#![feature(map_try_insert)]
299
299
#![feature(new_uninit)]
300
300
#![feature(thin_box)]
301
- #![feature(toowned_clone_into)]
302
301
#![feature(try_reserve_kind)]
303
302
#![feature(vec_into_raw_parts)]
304
303
//
You can’t perform that action at this time.
0 commit comments