2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:16:17
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn from_i32(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
2021-03-12 01:47:15 -06:00
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:22:21
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn from_i64(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:34:15
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn as_i32(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:36:17
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn into_i32(&self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:38:15
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn is_i32(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:40:15
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn to_i32(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:42:17
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn from_i32(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:44:19
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn as_i64(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:45:21
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn into_i64(&self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:46:19
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn is_i64(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:47:19
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn to_i64(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:48:21
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | pub fn from_i64(self) {}
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:93:19
|
2020-11-09 16:38:08 -06:00
|
|
|
|
|
|
|
|
LL | fn as_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 16:38:08 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:96:25
|
2020-11-09 16:38:08 -06:00
|
|
|
|
|
2020-12-30 05:02:26 -06:00
|
|
|
LL | fn into_i32_ref(&self) {}
|
|
|
|
| ^^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 16:38:08 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:98:19
|
2020-11-09 16:38:08 -06:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 16:38:08 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:102:21
|
2020-11-09 16:38:08 -06:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self) {}
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-11-09 16:38:08 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:117:19
|
2020-12-10 10:00:55 -06:00
|
|
|
|
|
|
|
|
LL | fn as_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 10:00:55 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:120:25
|
2020-12-10 10:00:55 -06:00
|
|
|
|
|
2020-12-30 05:02:26 -06:00
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 10:00:55 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:122:19
|
2020-12-10 10:00:55 -06:00
|
|
|
|
|
|
|
|
LL | fn is_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 10:00:55 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:126:21
|
2020-12-30 05:02:26 -06:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-30 05:02:26 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `into_*` usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:144:25
|
2020-12-30 05:02:26 -06:00
|
|
|
|
|
|
|
|
LL | fn into_i32_ref(&self);
|
|
|
|
| ^^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-30 05:02:26 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:150:21
|
2020-12-10 10:00:55 -06:00
|
|
|
|
|
|
|
|
LL | fn from_i32(self);
|
|
|
|
| ^^^^
|
2021-03-12 01:47:15 -06:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2020-12-10 10:00:55 -06:00
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:174:22
|
2021-03-17 09:52:14 -05:00
|
|
|
|
|
|
|
|
LL | fn to_u64_v2(&self) -> u64 {
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
2021-03-18 13:45:13 -05:00
|
|
|
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
|
2021-10-23 02:42:52 -05:00
|
|
|
--> $DIR/wrong_self_convention.rs:183:19
|
2021-03-17 09:52:14 -05:00
|
|
|
|
|
|
|
|
LL | fn to_u64(self) -> u64 {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
wrong_self_convention: Match `SelfKind::No` more restrictively
The `wrong_self_convention` lint uses a `SelfKind` type to decide
whether a method has the right kind of "self" for its name, or whether
the kind of "self" it has makes its name confusable for a method in
a common trait. One possibility is `SelfKind::No`, which is supposed
to mean "No `self`".
Previously, SelfKind::No matched everything _except_ Self, including
references to Self. This patch changes it to match Self, &Self, &mut
Self, Box<Self>, and so on.
For example, this kind of method was allowed before:
```
impl S {
// Should trigger the lint, because
// "methods called `is_*` usually take `self` by reference or no `self`"
fn is_foo(&mut self) -> bool { todo!() }
}
```
But since SelfKind::No matched "&mut self", no lint was triggered
(see #8142).
With this patch, the code above now gives a lint as expected.
Fixes #8142
changelog: [`wrong_self_convention`] rejects `self` references in more cases
2021-12-31 22:39:40 -06:00
|
|
|
error: methods called `is_*` usually take `self` by reference or no `self`
|
|
|
|
--> $DIR/wrong_self_convention.rs:197:27
|
|
|
|
|
|
|
|
|
LL | fn is_still_buggy(&mut self) -> bool {
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
|
|
|
error: aborting due to 25 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|