Kaynağa Gözat

crypto: impl PartialEq for Coin

ghassmo 4 yıl önce
ebeveyn
işleme
f02ef68c6e
1 değiştirilmiş dosya ile 6 ekleme ve 0 silme
  1. 6 0
      src/crypto/coin.rs

+ 6 - 0
src/crypto/coin.rs

@@ -29,3 +29,9 @@ impl Decodable for Coin {
         })
         })
     }
     }
 }
 }
+
+impl PartialEq for Coin {
+    fn eq(&self, other: &Self) -> bool {
+        self.repr == other.repr
+    }
+}