2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:18: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`
|
2021-03-12 07:47:15 +00:00
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:24: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:36: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:38: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
|
|
|
| ^^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:40: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:42: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:44: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:46: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:47: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
|
|
|
| ^^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2020-08-21 06:18:05 +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 is_i64(self) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:49: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-08-21 06:18:05 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:50: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
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2020-11-09 22:38:08 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:95:19
|
|
|
|
|
|
|
|
|
LL | fn as_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 22:38:08 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:98:25
|
2020-11-09 22:38:08 +00:00
|
|
|
|
|
2020-12-30 11:02:26 +00:00
|
|
|
LL | fn into_i32_ref(&self) {}
|
|
|
|
| ^^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 22:38:08 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:100:19
|
2020-11-09 22:38:08 +00:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 22:38:08 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:104:21
|
2020-11-09 22:38:08 +00:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 22:38:08 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:119:19
|
2020-12-10 16:00:55 +00:00
|
|
|
|
|
|
|
|
LL | fn as_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 16:00:55 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:122:25
|
2020-12-10 16:00:55 +00:00
|
|
|
|
|
2020-12-30 11:02:26 +00:00
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 16:00:55 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:124:19
|
2020-12-10 16:00:55 +00:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 16:00:55 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:128:21
|
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-30 11:02:26 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:146:25
|
|
|
|
|
|
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-30 11:02:26 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2020-12-30 11:02:26 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:152:21
|
2020-12-10 16:00:55 +00:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 07:47:15 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 16:00:55 +00:00
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
|
2021-03-29 19:51:23 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:176:22
|
2021-03-17 14:52:14 +00:00
|
|
|
|
|
|
|
|
LL | fn to_u64_v2(&self) -> u64 {
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
2021-03-18 18:45:13 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2021-03-29 19:51:23 +00:00
|
|
|
--> $DIR/wrong_self_convention.rs:185:19
|
2021-03-17 14:52:14 +00:00
|
|
|
|
|
|
|
|
LL | fn to_u64(self) -> u64 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
2020-12-30 11:02:26 +00:00
|
|
|
error: aborting due to 24 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|