Skip to content

Commit 04bd505

Browse files
committed
[Clippy] Swap iter_over_hash_type to use diagnostic items instead of paths
1 parent 8147cf4 commit 04bd505

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

std/src/collections/hash/map.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1393,6 +1393,7 @@ where
13931393
/// let iter = map.iter();
13941394
/// ```
13951395
#[stable(feature = "rust1", since = "1.0.0")]
1396+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_iter_ty")]
13961397
pub struct Iter<'a, K: 'a, V: 'a> {
13971398
base: base::Iter<'a, K, V>,
13981399
}
@@ -1431,6 +1432,7 @@ impl<K: Debug, V: Debug> fmt::Debug for Iter<'_, K, V> {
14311432
/// let iter = map.iter_mut();
14321433
/// ```
14331434
#[stable(feature = "rust1", since = "1.0.0")]
1435+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_iter_mut_ty")]
14341436
pub struct IterMut<'a, K: 'a, V: 'a> {
14351437
base: base::IterMut<'a, K, V>,
14361438
}
@@ -1491,6 +1493,7 @@ impl<K, V> IntoIter<K, V> {
14911493
/// let iter_keys = map.keys();
14921494
/// ```
14931495
#[stable(feature = "rust1", since = "1.0.0")]
1496+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_keys_ty")]
14941497
pub struct Keys<'a, K: 'a, V: 'a> {
14951498
inner: Iter<'a, K, V>,
14961499
}
@@ -1529,6 +1532,7 @@ impl<K: Debug, V> fmt::Debug for Keys<'_, K, V> {
15291532
/// let iter_values = map.values();
15301533
/// ```
15311534
#[stable(feature = "rust1", since = "1.0.0")]
1535+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_values_ty")]
15321536
pub struct Values<'a, K: 'a, V: 'a> {
15331537
inner: Iter<'a, K, V>,
15341538
}
@@ -1567,6 +1571,7 @@ impl<K, V: Debug> fmt::Debug for Values<'_, K, V> {
15671571
/// let iter = map.drain();
15681572
/// ```
15691573
#[stable(feature = "drain", since = "1.6.0")]
1574+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_drain_ty")]
15701575
pub struct Drain<'a, K: 'a, V: 'a> {
15711576
base: base::Drain<'a, K, V>,
15721577
}
@@ -1624,6 +1629,7 @@ where
16241629
/// let iter_values = map.values_mut();
16251630
/// ```
16261631
#[stable(feature = "map_values_mut", since = "1.10.0")]
1632+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_values_mut_ty")]
16271633
pub struct ValuesMut<'a, K: 'a, V: 'a> {
16281634
inner: IterMut<'a, K, V>,
16291635
}

std/src/collections/hash/set.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1271,6 +1271,7 @@ where
12711271
/// let mut iter = a.iter();
12721272
/// ```
12731273
#[stable(feature = "rust1", since = "1.0.0")]
1274+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashset_iter_ty")]
12741275
pub struct Iter<'a, K: 'a> {
12751276
base: base::Iter<'a, K>,
12761277
}
@@ -1313,6 +1314,7 @@ pub struct IntoIter<K> {
13131314
/// let mut drain = a.drain();
13141315
/// ```
13151316
#[stable(feature = "rust1", since = "1.0.0")]
1317+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashset_drain_ty")]
13161318
pub struct Drain<'a, K: 'a> {
13171319
base: base::Drain<'a, K>,
13181320
}

0 commit comments

Comments
 (0)