|
1 | 1 | error: methods called `from_*` usually take no self; consider choosing a less ambiguous name |
2 | | - --> $DIR/wrong_self_convention.rs:17:17 |
| 2 | + --> $DIR/wrong_self_convention.rs:18:17 |
3 | 3 | | |
4 | 4 | LL | fn from_i32(self) {} |
5 | 5 | | ^^^^ |
6 | 6 | | |
7 | 7 | = note: `-D clippy::wrong-self-convention` implied by `-D warnings` |
8 | 8 |
|
9 | 9 | error: methods called `from_*` usually take no self; consider choosing a less ambiguous name |
10 | | - --> $DIR/wrong_self_convention.rs:23:21 |
| 10 | + --> $DIR/wrong_self_convention.rs:24:21 |
11 | 11 | | |
12 | 12 | LL | pub fn from_i64(self) {} |
13 | 13 | | ^^^^ |
14 | 14 |
|
15 | 15 | error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name |
16 | | - --> $DIR/wrong_self_convention.rs:35:15 |
| 16 | + --> $DIR/wrong_self_convention.rs:36:15 |
17 | 17 | | |
18 | 18 | LL | fn as_i32(self) {} |
19 | 19 | | ^^^^ |
20 | 20 |
|
21 | 21 | error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name |
22 | | - --> $DIR/wrong_self_convention.rs:37:17 |
| 22 | + --> $DIR/wrong_self_convention.rs:38:17 |
23 | 23 | | |
24 | 24 | LL | fn into_i32(&self) {} |
25 | 25 | | ^^^^^ |
26 | 26 |
|
27 | 27 | error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name |
28 | | - --> $DIR/wrong_self_convention.rs:39:15 |
| 28 | + --> $DIR/wrong_self_convention.rs:40:15 |
29 | 29 | | |
30 | 30 | LL | fn is_i32(self) {} |
31 | 31 | | ^^^^ |
32 | 32 |
|
33 | 33 | error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name |
34 | | - --> $DIR/wrong_self_convention.rs:41:15 |
| 34 | + --> $DIR/wrong_self_convention.rs:42:15 |
35 | 35 | | |
36 | 36 | LL | fn to_i32(self) {} |
37 | 37 | | ^^^^ |
38 | 38 |
|
39 | 39 | error: methods called `from_*` usually take no self; consider choosing a less ambiguous name |
40 | | - --> $DIR/wrong_self_convention.rs:43:17 |
| 40 | + --> $DIR/wrong_self_convention.rs:44:17 |
41 | 41 | | |
42 | 42 | LL | fn from_i32(self) {} |
43 | 43 | | ^^^^ |
44 | 44 |
|
45 | 45 | error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name |
46 | | - --> $DIR/wrong_self_convention.rs:45:19 |
| 46 | + --> $DIR/wrong_self_convention.rs:46:19 |
47 | 47 | | |
48 | 48 | LL | pub fn as_i64(self) {} |
49 | 49 | | ^^^^ |
50 | 50 |
|
51 | 51 | error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name |
52 | | - --> $DIR/wrong_self_convention.rs:46:21 |
| 52 | + --> $DIR/wrong_self_convention.rs:47:21 |
53 | 53 | | |
54 | 54 | LL | pub fn into_i64(&self) {} |
55 | 55 | | ^^^^^ |
56 | 56 |
|
57 | 57 | error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name |
58 | | - --> $DIR/wrong_self_convention.rs:47:19 |
| 58 | + --> $DIR/wrong_self_convention.rs:48:19 |
59 | 59 | | |
60 | 60 | LL | pub fn is_i64(self) {} |
61 | 61 | | ^^^^ |
62 | 62 |
|
63 | 63 | error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name |
64 | | - --> $DIR/wrong_self_convention.rs:48:19 |
| 64 | + --> $DIR/wrong_self_convention.rs:49:19 |
65 | 65 | | |
66 | 66 | LL | pub fn to_i64(self) {} |
67 | 67 | | ^^^^ |
68 | 68 |
|
69 | 69 | error: methods called `from_*` usually take no self; consider choosing a less ambiguous name |
70 | | - --> $DIR/wrong_self_convention.rs:49:21 |
| 70 | + --> $DIR/wrong_self_convention.rs:50:21 |
71 | 71 | | |
72 | 72 | LL | pub fn from_i64(self) {} |
73 | 73 | | ^^^^ |
|
0 commit comments