mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
80 lines
2.7 KiB
Text
80 lines
2.7 KiB
Text
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:21:17
|
|
|
|
|
21 | fn from_i32(self) {}
|
|
| ^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/wrong_self_convention.rs:4:9
|
|
|
|
|
4 | #![deny(wrong_self_convention)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:27:21
|
|
|
|
|
27 | 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:38:15
|
|
|
|
|
38 | fn as_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:40:17
|
|
|
|
|
40 | 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:42:15
|
|
|
|
|
42 | fn is_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:44:15
|
|
|
|
|
44 | fn to_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:46:17
|
|
|
|
|
46 | 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:48:19
|
|
|
|
|
48 | 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:49:21
|
|
|
|
|
49 | 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:50:19
|
|
|
|
|
50 | 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:51:19
|
|
|
|
|
51 | pub fn to_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:52:21
|
|
|
|
|
52 | pub fn from_i64(self) {}
|
|
| ^^^^
|
|
|
|
error: aborting due to 12 previous errors
|
|
|