2017-02-07 20:05:30 +00:00
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:21:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
21 | fn from_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D wrong-self-convention` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:27:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
27 | pub fn from_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:40:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
40 | fn as_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:42:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
42 | fn into_i32(&self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:44:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
44 | fn is_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:46:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
46 | fn to_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:48:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
48 | fn from_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:50:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
50 | pub fn as_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:51:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
51 | pub fn into_i64(&self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:52:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
52 | pub fn is_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:53:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
53 | pub fn to_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:54:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-06-06 17:26:50 +00:00
|
|
|
54 | pub fn from_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 12 previous errors
|
|
|
|
|