make EventHandler partialeq

This commit is contained in:
Evan Almloff 2024-01-07 09:17:54 -06:00
parent 58c01253e5
commit ebacc7b709

View file

@ -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 {