Gabriel Pettier on Nostr: npub129gva…e4kwg yeah, i finally understood my mistake 😆 impl PartialEq for ...
npub129gvast08lj986yftn7q5qlnj8yfqufxx0m33s9u5xssjm8c64rsve4kwg (npub129g…4kwg) yeah, i finally understood my mistake 😆
impl PartialEq for HandTypes {
fn eq(&self, other: &Self) -> bool {
self == other
}
}
lldb did indicate me that the issue was in PartialEq, that was useful, but my eyes passed over it a few times before it clicked 🤦♂️
HandTypes is an Enum, so it felt a bit silly to implement.
impl PartialEq for HandTypes {
fn eq(&self, other: &Self) -> bool {
self == other
}
}
lldb did indicate me that the issue was in PartialEq, that was useful, but my eyes passed over it a few times before it clicked 🤦♂️
HandTypes is an Enum, so it felt a bit silly to implement.