Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore expl_impl_clone_on_copy pedantic clippy lint
error: you are implementing `Clone` explicitly on a `Copy` type --> src/lib.rs:72:1 | 72 | / impl Clone for Buffer { 73 | | #[inline] 74 | | fn clone(&self) -> Self { 75 | | Buffer::new() 76 | | } 77 | | } | |_^ | note: consider deriving `Clone` or removing `Copy` --> src/lib.rs:72:1 | 72 | / impl Clone for Buffer { 73 | | #[inline] 74 | | fn clone(&self) -> Self { 75 | | Buffer::new() 76 | | } 77 | | } | |_^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#expl_impl_clone_on_copy = note: `-D clippy::expl-impl-clone-on-copy` implied by `-D clippy::pedantic`
- Loading branch information