@@ -13,8 +13,8 @@ help: consider implementing `IntoIterator` for `&S1`
13
13
|
14
14
LL +
15
15
LL + impl IntoIterator for &S1 {
16
- LL + type IntoIter = std::slice::Iter<'_, u8>;
17
16
LL + type Item = &u8;
17
+ LL + type IntoIter = std::slice::Iter<'_, u8>;
18
18
LL + fn into_iter(self) -> Self::IntoIter {
19
19
LL + self.iter()
20
20
LL + }
@@ -34,8 +34,8 @@ help: consider implementing `IntoIterator` for `&mut S1`
34
34
|
35
35
LL +
36
36
LL + impl IntoIterator for &mut S1 {
37
- LL + type IntoIter = std::slice::IterMut<'_, u8>;
38
37
LL + type Item = &mut u8;
38
+ LL + type IntoIter = std::slice::IterMut<'_, u8>;
39
39
LL + fn into_iter(self) -> Self::IntoIter {
40
40
LL + self.iter()
41
41
LL + }
@@ -55,8 +55,8 @@ help: consider implementing `IntoIterator` for `&S3<'a>`
55
55
|
56
56
LL +
57
57
LL + impl IntoIterator for &S3<'a> {
58
- LL + type IntoIter = std::slice::Iter<'_, u8>;
59
58
LL + type Item = &u8;
59
+ LL + type IntoIter = std::slice::Iter<'_, u8>;
60
60
LL + fn into_iter(self) -> Self::IntoIter {
61
61
LL + self.iter()
62
62
LL + }
@@ -76,8 +76,8 @@ help: consider implementing `IntoIterator` for `&mut S3<'a>`
76
76
|
77
77
LL +
78
78
LL + impl IntoIterator for &mut S3<'a> {
79
- LL + type IntoIter = std::slice::IterMut<'_, u8>;
80
79
LL + type Item = &mut u8;
80
+ LL + type IntoIter = std::slice::IterMut<'_, u8>;
81
81
LL + fn into_iter(self) -> Self::IntoIter {
82
82
LL + self.iter()
83
83
LL + }
@@ -96,8 +96,8 @@ help: consider implementing `IntoIterator` for `&S8<T>`
96
96
|
97
97
LL +
98
98
LL + impl IntoIterator for &S8<T> {
99
- LL + type IntoIter = std::slice::Iter<'static, T>;
100
99
LL + type Item = &T;
100
+ LL + type IntoIter = std::slice::Iter<'static, T>;
101
101
LL + fn into_iter(self) -> Self::IntoIter {
102
102
LL + self.iter()
103
103
LL + }
@@ -117,8 +117,8 @@ help: consider implementing `IntoIterator` for `&S9<T>`
117
117
|
118
118
LL +
119
119
LL + impl IntoIterator for &S9<T> {
120
- LL + type IntoIter = std::slice::Iter<'_, T>;
121
120
LL + type Item = &T;
121
+ LL + type IntoIter = std::slice::Iter<'_, T>;
122
122
LL + fn into_iter(self) -> Self::IntoIter {
123
123
LL + self.iter()
124
124
LL + }
@@ -138,8 +138,8 @@ help: consider implementing `IntoIterator` for `&mut S9<T>`
138
138
|
139
139
LL +
140
140
LL + impl IntoIterator for &mut S9<T> {
141
- LL + type IntoIter = std::slice::IterMut<'_, T>;
142
141
LL + type Item = &mut T;
142
+ LL + type IntoIter = std::slice::IterMut<'_, T>;
143
143
LL + fn into_iter(self) -> Self::IntoIter {
144
144
LL + self.iter()
145
145
LL + }
@@ -162,8 +162,8 @@ help: consider implementing `IntoIterator` for `&Issue12037`
162
162
|
163
163
LL ~
164
164
LL + impl IntoIterator for &Issue12037 {
165
- LL + type IntoIter = std::slice::Iter<'_, u8>;
166
165
LL + type Item = &u8;
166
+ LL + type IntoIter = std::slice::Iter<'_, u8>;
167
167
LL + fn into_iter(self) -> Self::IntoIter {
168
168
LL + self.iter()
169
169
LL + }
0 commit comments