Allow opt-out to PodMonitor
duplicate case-clashes
#88
Annotations
1 error and 1 warning
cannot move out of `self.no_rename` which is behind a shared reference:
src/main.rs#L202
error[E0507]: cannot move out of `self.no_rename` which is behind a shared reference
--> src/main.rs:202:28
|
202 | no_rename: self.no_rename,
| ^^^^^^^^^^^^^^ move occurs because `self.no_rename` has type `std::vec::Vec<std::string::String>`, which does not implement the `Copy` trait
|
assigning the result of `Clone::clone()` may be inefficient:
src/analyzer.rs#L355
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/analyzer.rs:355:17
|
355 | simple_inner = ix.type_.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `simple_inner.clone_from(&ix.type_)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
= note: `#[warn(clippy::assigning_clones)]` on by default
|