Sfoglia il codice sorgente

make EventHandler partialeq

Evan Almloff 1 anno fa
parent
commit
ebacc7b709
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6 0
      packages/core/src/events.rs

+ 6 - 0
packages/core/src/events.rs

@@ -168,6 +168,12 @@ impl<T> Clone for EventHandler<T> {
     }
 }
 
+impl<T> PartialEq for EventHandler<T> {
+    fn eq(&self, other: &Self) -> bool {
+        Rc::ptr_eq(&self.callback, &other.callback)
+    }
+}
+
 impl<T> Default for EventHandler<T> {
     fn default() -> Self {
         Self {