2021-05-20 10:30:31 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention2.rs:54:29
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
LL | pub fn from_be_self(self) -> Self {
|
|
|
|
| ^^^^
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::wrong-self-convention` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::wrong_self_convention)]`
|
2021-04-08 15:50:13 +00:00
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: methods called `from_*` usually take no `self`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/wrong_self_convention2.rs:64:25
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | fn from_be_self(self) -> Self;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider choosing a less ambiguous name
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2021-04-08 15:50:13 +00:00
|
|
|
|