Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve useless_conversion clippy lint
warning: useless conversion to the same type: `syn::Attribute` --> src/derive.rs:34:21 | 34 | .into_iter() | _____________________^ | |_____________________| 35 | || .map(std::convert::Into::into) | ||______________________________________^ 36 | | .collect(); | |_________- help: consider removing | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `-W clippy::useless-conversion` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::useless_conversion)]`
- Loading branch information