@@ -8,7 +8,7 @@ LL | let Foo { x, y } = foo.as_mut();
88 |
99 = note: expected struct `Pin<&mut Foo<T, U>>`
1010 found struct `Foo<_, _>`
11- help: consider dereferencing to access the inner value using the Deref trait
11+ help: consider dereferencing to access the inner value using the ` Deref` trait
1212 |
1313LL | let Foo { x, y } = *foo.as_mut();
1414 | +
@@ -23,7 +23,7 @@ LL | Foo { x, y } => {}
2323 |
2424 = note: expected struct `Pin<&mut Foo<T, U>>`
2525 found struct `Foo<_, _>`
26- help: consider dereferencing to access the inner value using the Deref trait
26+ help: consider dereferencing to access the inner value using the ` Deref` trait
2727 |
2828LL | match *foo.as_mut() {
2929 | +
@@ -38,7 +38,7 @@ LL | Foo { x, y } => {}
3838 |
3939 = note: expected struct `Pin<&mut Foo<T, U>>`
4040 found struct `Foo<_, _>`
41- help: consider dereferencing to access the inner value using the Deref trait
41+ help: consider dereferencing to access the inner value using the ` Deref` trait
4242 |
4343LL | let _ = || match *foo.as_mut() {
4444 | +
@@ -53,7 +53,7 @@ LL | let Foo { x, y } = foo;
5353 |
5454 = note: expected struct `Pin<&Foo<T, U>>`
5555 found struct `Foo<_, _>`
56- help: consider dereferencing to access the inner value using the Deref trait
56+ help: consider dereferencing to access the inner value using the ` Deref` trait
5757 |
5858LL | let Foo { x, y } = *foo;
5959 | +
@@ -68,7 +68,7 @@ LL | Foo { x, y } => {}
6868 |
6969 = note: expected struct `Pin<&Foo<T, U>>`
7070 found struct `Foo<_, _>`
71- help: consider dereferencing to access the inner value using the Deref trait
71+ help: consider dereferencing to access the inner value using the ` Deref` trait
7272 |
7373LL | match *foo {
7474 | +
@@ -83,7 +83,7 @@ LL | Foo { x, y } => {}
8383 |
8484 = note: expected struct `Pin<&Foo<T, U>>`
8585 found struct `Foo<_, _>`
86- help: consider dereferencing to access the inner value using the Deref trait
86+ help: consider dereferencing to access the inner value using the ` Deref` trait
8787 |
8888LL | let _ = || match *foo {
8989 | +
@@ -98,7 +98,7 @@ LL | let Bar(x, y) = bar.as_mut();
9898 |
9999 = note: expected struct `Pin<&mut Bar<T, U>>`
100100 found struct `Bar<_, _>`
101- help: consider dereferencing to access the inner value using the Deref trait
101+ help: consider dereferencing to access the inner value using the ` Deref` trait
102102 |
103103LL | let Bar(x, y) = *bar.as_mut();
104104 | +
@@ -113,7 +113,7 @@ LL | Bar(x, y) => {}
113113 |
114114 = note: expected struct `Pin<&mut Bar<T, U>>`
115115 found struct `Bar<_, _>`
116- help: consider dereferencing to access the inner value using the Deref trait
116+ help: consider dereferencing to access the inner value using the ` Deref` trait
117117 |
118118LL | match *bar.as_mut() {
119119 | +
@@ -128,7 +128,7 @@ LL | Bar(x, y) => {}
128128 |
129129 = note: expected struct `Pin<&mut Bar<T, U>>`
130130 found struct `Bar<_, _>`
131- help: consider dereferencing to access the inner value using the Deref trait
131+ help: consider dereferencing to access the inner value using the ` Deref` trait
132132 |
133133LL | let _ = || match *bar.as_mut() {
134134 | +
@@ -143,7 +143,7 @@ LL | let Bar(x, y) = bar;
143143 |
144144 = note: expected struct `Pin<&Bar<T, U>>`
145145 found struct `Bar<_, _>`
146- help: consider dereferencing to access the inner value using the Deref trait
146+ help: consider dereferencing to access the inner value using the ` Deref` trait
147147 |
148148LL | let Bar(x, y) = *bar;
149149 | +
@@ -158,7 +158,7 @@ LL | Bar(x, y) => {}
158158 |
159159 = note: expected struct `Pin<&Bar<T, U>>`
160160 found struct `Bar<_, _>`
161- help: consider dereferencing to access the inner value using the Deref trait
161+ help: consider dereferencing to access the inner value using the ` Deref` trait
162162 |
163163LL | match *bar {
164164 | +
@@ -173,7 +173,7 @@ LL | Bar(x, y) => {}
173173 |
174174 = note: expected struct `Pin<&Bar<T, U>>`
175175 found struct `Bar<_, _>`
176- help: consider dereferencing to access the inner value using the Deref trait
176+ help: consider dereferencing to access the inner value using the ` Deref` trait
177177 |
178178LL | let _ = || match *bar {
179179 | +
@@ -188,7 +188,7 @@ LL | let NonPinProject { x } = foo;
188188 |
189189 = note: expected struct `Pin<&mut NonPinProject<T>>`
190190 found struct `NonPinProject<_>`
191- help: consider dereferencing to access the inner value using the Deref trait
191+ help: consider dereferencing to access the inner value using the ` Deref` trait
192192 |
193193LL | let NonPinProject { x } = *foo;
194194 | +
@@ -203,7 +203,7 @@ LL | let NonPinProject { x } = bar;
203203 |
204204 = note: expected struct `Pin<&NonPinProject<U>>`
205205 found struct `NonPinProject<_>`
206- help: consider dereferencing to access the inner value using the Deref trait
206+ help: consider dereferencing to access the inner value using the ` Deref` trait
207207 |
208208LL | let NonPinProject { x } = *bar;
209209 | +
@@ -218,7 +218,7 @@ LL | NonPinProject { x } => {}
218218 |
219219 = note: expected struct `Pin<&mut NonPinProject<T>>`
220220 found struct `NonPinProject<_>`
221- help: consider dereferencing to access the inner value using the Deref trait
221+ help: consider dereferencing to access the inner value using the ` Deref` trait
222222 |
223223LL | match *foo {
224224 | +
@@ -233,7 +233,7 @@ LL | NonPinProject { x } => {}
233233 |
234234 = note: expected struct `Pin<&NonPinProject<U>>`
235235 found struct `NonPinProject<_>`
236- help: consider dereferencing to access the inner value using the Deref trait
236+ help: consider dereferencing to access the inner value using the ` Deref` trait
237237 |
238238LL | match *bar {
239239 | +
0 commit comments