Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore implied_bounds_in_impls clippy lint
error: this bound is already specified as the supertrait of `DoubleEndedIterator` --> src/range.rs:58:15 | 58 | ) -> impl Iterator<Item = char> + DoubleEndedIterator + ExactSizeIterator + 'a { | ^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls help: try removing this bound | 58 - ) -> impl Iterator<Item = char> + DoubleEndedIterator + ExactSizeIterator + 'a { 58 + ) -> impl DoubleEndedIterator + ExactSizeIterator + 'a { |
- Loading branch information