We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing_trait_methods
There are some hidden built-in methods not intended for public usage.
#![deny(clippy::missing_trait_methods)] struct Foo; impl Eq for Foo {} impl PartialEq for Foo { fn eq(&self, _: &Self) -> bool { true } }
error: missing trait method provided by default: `assert_receiver_is_total_eq` --> src/lib.rs:5:1 | 5 | impl Eq for Foo {} | ^^^^^^^^^^^^^^^ |
cc @Alexendoo #9661
The text was updated successfully, but these errors were encountered:
Closing due to the lack of activity.
Sorry, something went wrong.
No branches or pull requests
There are some hidden built-in methods not intended for public usage.
cc @Alexendoo #9661
The text was updated successfully, but these errors were encountered: