summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/wrong_self_convention.stderr
blob: 0d0eb19cd072333012d91cc384e5b6a2031e199a (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
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
  --> $DIR/wrong_self_convention.rs:17:17
   |
LL |     fn from_i32(self) {}
   |                 ^^^^
   |
   = note: `-D clippy::wrong-self-convention` implied by `-D warnings`

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

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

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

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

error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
  --> $DIR/wrong_self_convention.rs:41:15
   |
LL |     fn to_i32(self) {}
   |               ^^^^

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

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

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

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

error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
  --> $DIR/wrong_self_convention.rs:48:19
   |
LL |     pub fn to_i64(self) {}
   |                   ^^^^

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

error: aborting due to 12 previous errors