mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
error: non-canonical implementation of `clone` on a `Copy` type
|
|
--> $DIR/non_canonical_clone_impl.rs:9:29
|
|
|
|
|
LL | fn clone(&self) -> Self {
|
|
| _____________________________^
|
|
LL | | Self(self.0)
|
|
LL | | }
|
|
| |_____^ help: change this to: `{ *self }`
|
|
|
|
|
= note: `-D clippy::non-canonical-clone-impl` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::non_canonical_clone_impl)]`
|
|
|
|
error: unnecessary implementation of `clone_from` on a `Copy` type
|
|
--> $DIR/non_canonical_clone_impl.rs:13:5
|
|
|
|
|
LL | / fn clone_from(&mut self, source: &Self) {
|
|
LL | | source.clone();
|
|
LL | | *self = source.clone();
|
|
LL | | }
|
|
| |_____^ help: remove it
|
|
|
|
error: non-canonical implementation of `clone` on a `Copy` type
|
|
--> $DIR/non_canonical_clone_impl.rs:80:29
|
|
|
|
|
LL | fn clone(&self) -> Self {
|
|
| _____________________________^
|
|
LL | | Self(self.0)
|
|
LL | | }
|
|
| |_____^ help: change this to: `{ *self }`
|
|
|
|
error: unnecessary implementation of `clone_from` on a `Copy` type
|
|
--> $DIR/non_canonical_clone_impl.rs:84:5
|
|
|
|
|
LL | / fn clone_from(&mut self, source: &Self) {
|
|
LL | | source.clone();
|
|
LL | | *self = source.clone();
|
|
LL | | }
|
|
| |_____^ help: remove it
|
|
|
|
error: aborting due to 4 previous errors
|
|
|