thiserror/impl
David Tolnay d5fa92940b
Ignore type_repetition_in_bounds/trait_duplication_in_bounds clippy false positive
https://github.com/rust-lang/rust-clippy/issues/8771

    error: this type has already been used as a bound predicate
      --> impl/src/generics.rs:60:61
       |
    60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
       |                                                             ^^^^^^^^
       |
       = note: `-D clippy::type-repetition-in-bounds` implied by `-D clippy::pedantic`
       = help: consider combining the bounds: `impl ToTokens: ToTokens + ToTokens`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds

    error: this trait bound is already specified in the where clause
      --> impl/src/generics.rs:60:39
       |
    60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
       |                                       ^^^^^^^^
       |
       = note: `-D clippy::trait-duplication-in-bounds` implied by `-D clippy::pedantic`
       = help: consider removing this trait bound
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trait_duplication_in_bounds
2022-04-30 20:26:10 -07:00
..
src Ignore type_repetition_in_bounds/trait_duplication_in_bounds clippy false positive 2022-04-30 20:26:10 -07:00
Cargo.toml Release 1.0.31 2022-04-30 14:23:31 -07:00
LICENSE-APACHE Link license files into impl subcrate 2020-02-14 11:11:30 -08:00
LICENSE-MIT Link license files into impl subcrate 2020-02-14 11:11:30 -08:00