2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:16: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-25 18:29:11 +00:00
|
|
|
= help: consider choosing a less ambiguous name
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::wrong_self_convention)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/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
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:39: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:42: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:45: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:48: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:51: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:53: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:55: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:57: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:59: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-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:105:19
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn as_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:109:25
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
2021-01-15 09:56:44 +00:00
|
|
|
LL | fn into_i32_ref(&self) {}
|
|
|
|
| ^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:112:19
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self) {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:117:21
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:133:19
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn as_i32(self);
|
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:137:25
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
2021-01-15 09:56:44 +00:00
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:140:19
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self);
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:145:21
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2021-01-15 09:56:44 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:164:25
|
2021-01-15 09:56:44 +00:00
|
|
|
|
|
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2021-01-15 09:56:44 +00:00
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:171:21
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:196:22
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
LL | fn to_u64_v2(&self) -> u64 {
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention.rs:206:19
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
LL | fn to_u64(self) -> u64 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2022-05-05 14:12:52 +00:00
|
|
|
error: aborting due to 24 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|