summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/wrong_self_convention.stderr
blob: 2e7ee51d7e11a7e07593df9a926e2b7912a2f78c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:16:17
   |
LL |     fn from_i32(self) {}
   |                 ^^^^
   |
   = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:22:21
   |
LL |     pub fn from_i64(self) {}
   |                     ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
  --> $DIR/wrong_self_convention.rs:34:15
   |
LL |     fn as_i32(self) {}
   |               ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `into_*` usually take `self` by value
  --> $DIR/wrong_self_convention.rs:36:17
   |
LL |     fn into_i32(&self) {}
   |                 ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
  --> $DIR/wrong_self_convention.rs:38:15
   |
LL |     fn is_i32(self) {}
   |               ^^^^
   |
   = 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
  --> $DIR/wrong_self_convention.rs:40:15
   |
LL |     fn to_i32(self) {}
   |               ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:42:17
   |
LL |     fn from_i32(self) {}
   |                 ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
  --> $DIR/wrong_self_convention.rs:44:19
   |
LL |     pub fn as_i64(self) {}
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `into_*` usually take `self` by value
  --> $DIR/wrong_self_convention.rs:45:21
   |
LL |     pub fn into_i64(&self) {}
   |                     ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
  --> $DIR/wrong_self_convention.rs:46:19
   |
LL |     pub fn is_i64(self) {}
   |                   ^^^^
   |
   = 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
  --> $DIR/wrong_self_convention.rs:47:19
   |
LL |     pub fn to_i64(self) {}
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:48:21
   |
LL |     pub fn from_i64(self) {}
   |                     ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
  --> $DIR/wrong_self_convention.rs:93:19
   |
LL |         fn as_i32(self) {}
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `into_*` usually take `self` by value
  --> $DIR/wrong_self_convention.rs:96:25
   |
LL |         fn into_i32_ref(&self) {}
   |                         ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
  --> $DIR/wrong_self_convention.rs:98:19
   |
LL |         fn is_i32(self) {}
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:102:21
   |
LL |         fn from_i32(self) {}
   |                     ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `as_*` usually take `self` by reference or `self` by mutable reference
  --> $DIR/wrong_self_convention.rs:117:19
   |
LL |         fn as_i32(self);
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `into_*` usually take `self` by value
  --> $DIR/wrong_self_convention.rs:120:25
   |
LL |         fn into_i32_ref(&self);
   |                         ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `is_*` usually take `self` by mutable reference or `self` by reference or no `self`
  --> $DIR/wrong_self_convention.rs:122:19
   |
LL |         fn is_i32(self);
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:126:21
   |
LL |         fn from_i32(self);
   |                     ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `into_*` usually take `self` by value
  --> $DIR/wrong_self_convention.rs:144:25
   |
LL |         fn into_i32_ref(&self);
   |                         ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods called `from_*` usually take no `self`
  --> $DIR/wrong_self_convention.rs:150:21
   |
LL |         fn from_i32(self);
   |                     ^^^^
   |
   = help: consider choosing a less ambiguous name

error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
  --> $DIR/wrong_self_convention.rs:174:22
   |
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
  --> $DIR/wrong_self_convention.rs:183:19
   |
LL |         fn to_u64(self) -> u64 {
   |                   ^^^^
   |
   = help: consider choosing a less ambiguous name

error: aborting due to 24 previous errors