Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore explicit_auto_deref clippy lint
error: deref which would be done by auto-deref --> src/value/partial_eq.rs:32:22 | 32 | eq_str(self, *other) | ^^^^^^ help: try this: `other` | = note: `-D clippy::explicit-auto-deref` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref error: deref which would be done by auto-deref --> src/value/partial_eq.rs:44:23 | 44 | eq_str(other, *self) | ^^^^^ help: try this: `self` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
- Loading branch information