77 lines
2.6 KiB
Plaintext
77 lines
2.6 KiB
Plaintext
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:31:17
|
|
|
|
|
31 | fn from_i32(self) {}
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:37:21
|
|
|
|
|
37 | pub fn from_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:50:15
|
|
|
|
|
50 | fn as_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:52:17
|
|
|
|
|
52 | fn into_i32(&self) {}
|
|
| ^^^^^
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:54:15
|
|
|
|
|
54 | fn is_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:56:15
|
|
|
|
|
56 | fn to_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:58:17
|
|
|
|
|
58 | fn from_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:60:19
|
|
|
|
|
60 | pub fn as_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:61:21
|
|
|
|
|
61 | pub fn into_i64(&self) {}
|
|
| ^^^^^
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:62:19
|
|
|
|
|
62 | pub fn is_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:63:19
|
|
|
|
|
63 | pub fn to_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:64:21
|
|
|
|
|
64 | pub fn from_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: aborting due to 12 previous errors
|
|
|