2017-02-07 20:05:30 +00:00
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:17:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn from_i32(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:23:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:35:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:37:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:39:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:41:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:43:17
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:45:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:46:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:47:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:48:19
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:49:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
|
|
|
|