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.
1 parent 7afa0cc commit b1d2a91Copy full SHA for b1d2a91
src/libcore/hash/mod.rs
@@ -542,6 +542,16 @@ impl<H> Default for BuildHasherDefault<H> {
542
}
543
544
545
+#[stable(since = "1.29.0", feature = "build_hasher_eq")]
546
+impl<H> PartialEq for BuildHasherDefault<H> {
547
+ fn eq(&self, _other: &BuildHasherDefault<H>) -> bool {
548
+ true
549
+ }
550
+}
551
+
552
553
+impl<H> Eq for BuildHasherDefault<H> {}
554
555
//////////////////////////////////////////////////////////////////////////////
556
557
mod impls {
0 commit comments