You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```text
error: this expression borrows a value the compiler would automatically borrow
--> futures-util/src/future/poll_fn.rs:56:9
|
56 | (&mut self.f)(cx)
| ^^^^^^^^^^^^^ help: change this to: `self.f`
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression borrows a value the compiler would automatically borrow
--> futures-util/src/stream/repeat_with.rs:23:26
|
23 | Poll::Ready(Some((&mut self.repeater)()))
| ^^^^^^^^^^^^^^^^^^^^ help: change this to: `self.repeater`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
error: this expression borrows a value the compiler would automatically borrow
--> futures-util/src/stream/poll_fn.rs:55:9
|
55 | (&mut self.f)(cx)
| ^^^^^^^^^^^^^ help: change this to: `self.f`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
```
0 commit comments