| error: methods called `from_*` usually take no `self` |
| --> tests/ui/wrong_self_convention.rs:15:17 |
| | |
| LL | fn from_i32(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| = note: `-D clippy::wrong-self-convention` implied by `-D warnings` |
| = help: to override `-D warnings` add `#[allow(clippy::wrong_self_convention)]` |
| |
| error: methods called `from_*` usually take no `self` |
| --> tests/ui/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 |
| --> tests/ui/wrong_self_convention.rs:36:15 |
| | |
| LL | fn as_i32(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `into_*` usually take `self` by value |
| --> tests/ui/wrong_self_convention.rs:40: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` |
| --> tests/ui/wrong_self_convention.rs:44: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 |
| --> tests/ui/wrong_self_convention.rs:48:15 |
| | |
| LL | fn to_i32(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `from_*` usually take no `self` |
| --> tests/ui/wrong_self_convention.rs:52: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 |
| --> tests/ui/wrong_self_convention.rs:55:19 |
| | |
| LL | pub fn as_i64(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `into_*` usually take `self` by value |
| --> tests/ui/wrong_self_convention.rs:58: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` |
| --> tests/ui/wrong_self_convention.rs:61: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 |
| --> tests/ui/wrong_self_convention.rs:64:19 |
| | |
| LL | pub fn to_i64(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `from_*` usually take no `self` |
| --> tests/ui/wrong_self_convention.rs:67: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 |
| --> tests/ui/wrong_self_convention.rs:113:19 |
| | |
| LL | fn as_i32(self) {} |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `into_*` usually take `self` by value |
| --> tests/ui/wrong_self_convention.rs:118: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` |
| --> tests/ui/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` |
| --> tests/ui/wrong_self_convention.rs:128: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 |
| --> tests/ui/wrong_self_convention.rs:145:19 |
| | |
| LL | fn as_i32(self); |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `into_*` usually take `self` by value |
| --> tests/ui/wrong_self_convention.rs:150: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` |
| --> tests/ui/wrong_self_convention.rs:154:19 |
| | |
| LL | fn is_i32(self); |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `from_*` usually take no `self` |
| --> tests/ui/wrong_self_convention.rs:160:21 |
| | |
| LL | fn from_i32(self); |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `into_*` usually take `self` by value |
| --> tests/ui/wrong_self_convention.rs:180:25 |
| | |
| LL | fn into_i32_ref(&self); |
| | ^^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: methods called `from_*` usually take no `self` |
| --> tests/ui/wrong_self_convention.rs:188: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 |
| --> tests/ui/wrong_self_convention.rs:214: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 |
| --> tests/ui/wrong_self_convention.rs:225:19 |
| | |
| LL | fn to_u64(self) -> u64 { |
| | ^^^^ |
| | |
| = help: consider choosing a less ambiguous name |
| |
| error: aborting due to 24 previous errors |
| |