mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
148 lines
5.1 KiB
Text
148 lines
5.1 KiB
Text
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:18: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:24: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:36: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:38: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:40: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:42: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:44: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:46: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:47: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:48: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:49: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:50: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:95:19
|
|
|
|
|
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:98:25
|
|
|
|
|
LL | fn into_i32_ref(&self) {}
|
|
| ^^^^^
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:100:19
|
|
|
|
|
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:102:19
|
|
|
|
|
LL | fn to_i32(self) {}
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:104:21
|
|
|
|
|
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:119:19
|
|
|
|
|
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:122:25
|
|
|
|
|
LL | fn into_i32_ref(&self);
|
|
| ^^^^^
|
|
|
|
error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:124:19
|
|
|
|
|
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:126:19
|
|
|
|
|
LL | fn to_i32(self);
|
|
| ^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:128:21
|
|
|
|
|
LL | fn from_i32(self);
|
|
| ^^^^
|
|
|
|
error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:146:25
|
|
|
|
|
LL | fn into_i32_ref(&self);
|
|
| ^^^^^
|
|
|
|
error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
|
|
--> $DIR/wrong_self_convention.rs:152:21
|
|
|
|
|
LL | fn from_i32(self);
|
|
| ^^^^
|
|
|
|
error: aborting due to 24 previous errors
|
|
|