@@ -137,7 +137,7 @@ impl<'a, 'b: 'a> DebugStruct<'a, 'b> {
137137 ///
138138 /// This method is equivalent to [`DebugStruct::field`], but formats the
139139 /// value using a provided closure rather than by calling [`Debug::fmt`].
140- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
140+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
141141 pub fn field_with < F > ( & mut self , name : & str , value_fmt : F ) -> & mut Self
142142 where
143143 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
@@ -334,7 +334,7 @@ impl<'a, 'b: 'a> DebugTuple<'a, 'b> {
334334 ///
335335 /// This method is equivalent to [`DebugTuple::field`], but formats the
336336 /// value using a provided closure rather than by calling [`Debug::fmt`].
337- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
337+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
338338 pub fn field_with < F > ( & mut self , value_fmt : F ) -> & mut Self
339339 where
340340 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
@@ -554,7 +554,7 @@ impl<'a, 'b: 'a> DebugSet<'a, 'b> {
554554 ///
555555 /// This method is equivalent to [`DebugSet::entry`], but formats the
556556 /// entry using a provided closure rather than by calling [`Debug::fmt`].
557- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
557+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
558558 pub fn entry_with < F > ( & mut self , entry_fmt : F ) -> & mut Self
559559 where
560560 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
@@ -746,7 +746,7 @@ impl<'a, 'b: 'a> DebugList<'a, 'b> {
746746 ///
747747 /// This method is equivalent to [`DebugList::entry`], but formats the
748748 /// entry using a provided closure rather than by calling [`Debug::fmt`].
749- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
749+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
750750 pub fn entry_with < F > ( & mut self , entry_fmt : F ) -> & mut Self
751751 where
752752 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
@@ -976,7 +976,7 @@ impl<'a, 'b: 'a> DebugMap<'a, 'b> {
976976 ///
977977 /// This method is equivalent to [`DebugMap::key`], but formats the
978978 /// key using a provided closure rather than by calling [`Debug::fmt`].
979- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
979+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
980980 pub fn key_with < F > ( & mut self , key_fmt : F ) -> & mut Self
981981 where
982982 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
@@ -1052,7 +1052,7 @@ impl<'a, 'b: 'a> DebugMap<'a, 'b> {
10521052 ///
10531053 /// This method is equivalent to [`DebugMap::value`], but formats the
10541054 /// value using a provided closure rather than by calling [`Debug::fmt`].
1055- #[ unstable ( feature = "debug_closure_helpers" , issue = "117729 " ) ]
1055+ #[ stable ( feature = "debug_closure_helpers" , since = "CURRENT_RUSTC_VERSION " ) ]
10561056 pub fn value_with < F > ( & mut self , value_fmt : F ) -> & mut Self
10571057 where
10581058 F : FnOnce ( & mut fmt:: Formatter < ' _ > ) -> fmt:: Result ,
0 commit comments