| error: methods called `from_*` usually take no `self` |
| --> $DIR/wrong_self_convention.rs:17: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:23: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:35: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:37:17 |
| | |
| LL | fn into_i32(&self) {} |
| | ^^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `is_*` usually take `self` by reference or no `self` |
| --> $DIR/wrong_self_convention.rs:39: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:41: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:43: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:45: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:46:21 |
| | |
| LL | pub fn into_i64(&self) {} |
| | ^^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `is_*` usually take `self` by reference or no `self` |
| --> $DIR/wrong_self_convention.rs:47: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:48: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:49: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:94: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:97:25 |
| | |
| LL | fn into_i32_ref(&self) {} |
| | ^^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `is_*` usually take `self` by reference or no `self` |
| --> $DIR/wrong_self_convention.rs:99: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:103: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:118: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:121:25 |
| | |
| LL | fn into_i32_ref(&self); |
| | ^^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `is_*` usually take `self` by reference or no `self` |
| --> $DIR/wrong_self_convention.rs:123: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:127: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:145: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:151: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:175: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:184:19 |
| | |
| LL | fn to_u64(self) -> u64 { |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: aborting due to 24 previous errors |
| |