mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-22 02:53:20 +00:00
12 lines
404 B
Text
12 lines
404 B
Text
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
||
|
--> $DIR/wrong_self_convention2.rs:28:19
|
||
|
|
|
||
|
LL | fn to_u64(self) -> u64 {
|
||
|
| ^^^^
|
||
|
|
|
||
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
||
|
= help: consider choosing a less ambiguous name
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|