@@ -3042,7 +3042,7 @@ impl<K: Debug, V: Debug, S, A: Allocator> Debug for OccupiedError<'_, K, V, S, A
3042
3042
}
3043
3043
}
3044
3044
3045
- impl < ' a , K : Debug , V : Debug , S , A : Allocator > fmt:: Display for OccupiedError < ' a , K , V , S , A > {
3045
+ impl < K : Debug , V : Debug , S , A : Allocator > fmt:: Display for OccupiedError < ' _ , K , V , S , A > {
3046
3046
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
3047
3047
write ! (
3048
3048
f,
@@ -3153,7 +3153,7 @@ impl<K, V, S, A: Allocator> IntoIterator for HashMap<K, V, S, A> {
3153
3153
}
3154
3154
}
3155
3155
3156
- impl < ' a , K , V > Default for Iter < ' a , K , V > {
3156
+ impl < K , V > Default for Iter < ' _ , K , V > {
3157
3157
#[ cfg_attr( feature = "inline-more" , inline) ]
3158
3158
fn default ( ) -> Self {
3159
3159
Self {
@@ -3201,7 +3201,7 @@ impl<K, V> ExactSizeIterator for Iter<'_, K, V> {
3201
3201
3202
3202
impl < K , V > FusedIterator for Iter < ' _ , K , V > { }
3203
3203
3204
- impl < ' a , K , V > Default for IterMut < ' a , K , V > {
3204
+ impl < K , V > Default for IterMut < ' _ , K , V > {
3205
3205
#[ cfg_attr( feature = "inline-more" , inline) ]
3206
3206
fn default ( ) -> Self {
3207
3207
Self {
@@ -3300,7 +3300,7 @@ impl<K: Debug, V: Debug, A: Allocator> fmt::Debug for IntoIter<K, V, A> {
3300
3300
}
3301
3301
}
3302
3302
3303
- impl < ' a , K , V > Default for Keys < ' a , K , V > {
3303
+ impl < K , V > Default for Keys < ' _ , K , V > {
3304
3304
#[ cfg_attr( feature = "inline-more" , inline) ]
3305
3305
fn default ( ) -> Self {
3306
3306
Self {
@@ -3340,7 +3340,7 @@ impl<K, V> ExactSizeIterator for Keys<'_, K, V> {
3340
3340
}
3341
3341
impl < K , V > FusedIterator for Keys < ' _ , K , V > { }
3342
3342
3343
- impl < ' a , K , V > Default for Values < ' a , K , V > {
3343
+ impl < K , V > Default for Values < ' _ , K , V > {
3344
3344
#[ cfg_attr( feature = "inline-more" , inline) ]
3345
3345
fn default ( ) -> Self {
3346
3346
Self {
@@ -3380,7 +3380,7 @@ impl<K, V> ExactSizeIterator for Values<'_, K, V> {
3380
3380
}
3381
3381
impl < K , V > FusedIterator for Values < ' _ , K , V > { }
3382
3382
3383
- impl < ' a , K , V > Default for ValuesMut < ' a , K , V > {
3383
+ impl < K , V > Default for ValuesMut < ' _ , K , V > {
3384
3384
#[ cfg_attr( feature = "inline-more" , inline) ]
3385
3385
fn default ( ) -> Self {
3386
3386
Self {
@@ -3428,7 +3428,7 @@ impl<K, V: Debug> fmt::Debug for ValuesMut<'_, K, V> {
3428
3428
}
3429
3429
}
3430
3430
3431
- impl < ' a , K , V , A : Allocator > Iterator for Drain < ' a , K , V , A > {
3431
+ impl < K , V , A : Allocator > Iterator for Drain < ' _ , K , V , A > {
3432
3432
type Item = ( K , V ) ;
3433
3433
3434
3434
#[ cfg_attr( feature = "inline-more" , inline) ]
0 commit comments