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 {
6767 /// Basic usage:
6868 ///
6969 /// ```
70- /// # #![feature(toowned_clone_into)]
7170 /// let mut s: String = String::new();
7271 /// "hello".clone_into(&mut s);
7372 ///
7473 /// let mut v: Vec<i32> = Vec::new();
7574 /// [1, 2][..].clone_into(&mut v);
7675 /// ```
77- #[ unstable ( feature = "toowned_clone_into" , reason = "recently added" , issue = "41263 ") ]
76+ #[ stable ( feature = "toowned_clone_into" , since = "1.63.0 " ) ]
7877 fn clone_into ( & self , target : & mut Self :: Owned ) {
7978 * target = self . to_owned ( ) ;
8079 }
Original file line number Diff line number Diff line change 298298#![ feature( map_try_insert) ]
299299#![ feature( new_uninit) ]
300300#![ feature( thin_box) ]
301- #![ feature( toowned_clone_into) ]
302301#![ feature( try_reserve_kind) ]
303302#![ feature( vec_into_raw_parts) ]
304303//
You can’t perform that action at this time.
0 commit comments