@@ -867,7 +867,7 @@ where
867867 /// assert_eq!(err.entry.get(), &"a");
868868 /// assert_eq!(err.value, "b");
869869 /// ```
870- #[ unstable( feature = "map_try_insert" , issue = "none " ) ]
870+ #[ unstable( feature = "map_try_insert" , issue = "82766 " ) ]
871871 pub fn try_insert ( & mut self , key : K , value : V ) -> Result < & mut V , OccupiedError < ' _ , K , V > > {
872872 match self . entry ( key) {
873873 Occupied ( entry) => Err ( OccupiedError { entry, value } ) ,
@@ -1887,15 +1887,15 @@ impl<K: Debug, V> Debug for VacantEntry<'_, K, V> {
18871887/// The error returned by [`try_insert`](HashMap::try_insert) when the key already exists.
18881888///
18891889/// Contains the occupied entry, and the value that was not inserted.
1890- #[ unstable( feature = "map_try_insert" , issue = "none " ) ]
1890+ #[ unstable( feature = "map_try_insert" , issue = "82766 " ) ]
18911891pub struct OccupiedError < ' a , K : ' a , V : ' a > {
18921892 /// The entry in the map that was already occupied.
18931893 pub entry : OccupiedEntry < ' a , K , V > ,
18941894 /// The value which was not inserted, because the entry was already occupied.
18951895 pub value : V ,
18961896}
18971897
1898- #[ unstable( feature = "map_try_insert" , issue = "none " ) ]
1898+ #[ unstable( feature = "map_try_insert" , issue = "82766 " ) ]
18991899impl < K : Debug , V : Debug > Debug for OccupiedError < ' _ , K , V > {
19001900 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
19011901 f. debug_struct ( "OccupiedError" )
@@ -1906,7 +1906,7 @@ impl<K: Debug, V: Debug> Debug for OccupiedError<'_, K, V> {
19061906 }
19071907}
19081908
1909- #[ unstable( feature = "map_try_insert" , issue = "none " ) ]
1909+ #[ unstable( feature = "map_try_insert" , issue = "82766 " ) ]
19101910impl < ' a , K : Debug , V : Debug > fmt:: Display for OccupiedError < ' a , K , V > {
19111911 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
19121912 write ! (
0 commit comments