Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable buggy iter_not_returning_iterator lint
rust-lang/rust-clippy#8285 error: this method is named `iter` but its return type does not implement `Iterator` --> src/map.rs:238:5 | 238 | pub fn iter(&self) -> Iter { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D clippy::iter-not-returning-iterator` implied by `-D clippy::pedantic` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_not_returning_iterator error: this method is named `iter_mut` but its return type does not implement `Iterator` --> src/map.rs:246:5 | 246 | pub fn iter_mut(&mut self) -> IterMut { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_not_returning_iterator
- Loading branch information