We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
derive_hash_xor_eq
derive_hash_xor_eq is triggered for custom traits that are named Hash.
Hash
Bad
#[derive(PartialEq)] struct Foo; trait Hash {} impl Hash for Foo {}
Ok
#[derive(PartialEq)] struct Foo; trait Hash {} impl self::Hash for Foo {}