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