From 7aa3bc505d1a4f4193d27bed3e39366847f816d6 Mon Sep 17 00:00:00 2001 From: incrypto32 Date: Fri, 17 Apr 2026 13:12:25 +0530 Subject: [PATCH] graph: Remove manual Eq::assert_receiver_is_total_eq impl Manually implementing this method is now a hard error in recent Rust toolchains. --- graph/src/util/intern.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/graph/src/util/intern.rs b/graph/src/util/intern.rs index 884e4cb7e3d..04d69bc88df 100644 --- a/graph/src/util/intern.rs +++ b/graph/src/util/intern.rs @@ -510,9 +510,7 @@ impl PartialEq for Object { } } -impl Eq for Object { - fn assert_receiver_is_total_eq(&self) {} -} +impl Eq for Object {} impl Serialize for Object { fn serialize(&self, serializer: S) -> Result