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
error: you are deriving `PartialEq` and can implement `Eq`
--> src/lib.rs:216:24
|
216 | #[derive(Clone, Debug, PartialEq)]
| ^^^^^^^^^ help: consider deriving `Eq` as well: `PartialEq, Eq`
|
note: the lint level is defined here
--> src/lib.rs:6:5
|
6 | clippy::all,
| ^^^^^^^^^^^
= note: `#[deny(clippy::derive_partial_eq_without_eq)]` implied by `#[deny(clippy::all)]`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq
error: this type has already been used as a bound predicate
--> src/derived.rs:562:9
|
562 | Self::Key: Hash + Eq,
| ^^^^^^^^^^^^^^^^^^^^
|
= help: consider combining the bounds: `Self::Key: From<K> + Hash + Eq`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds
error: this type has already been used as a bound predicate
--> src/derived.rs:552:9
|
552 | Self::Key: Hash + Eq;
| ^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> src/lib.rs:9:5
|
9 | clippy::pedantic,
| ^^^^^^^^^^^^^^^^
= note: `#[deny(clippy::type_repetition_in_bounds)]` implied by `#[deny(clippy::pedantic)]`
= help: consider combining the bounds: `Self::Key: From<K> + Hash + Eq`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds