Explorar o código

make EventHandler partialeq

Evan Almloff hai 1 ano
pai
achega
ebacc7b709
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  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 {