impl Eq for OID #24

Merged
randombit merged 1 commits from jack/add-eq-for-oid into master 2021-06-03 17:14:22 -07:00
Showing only changes of commit 3bc5c14a19 - Show all commits

View File

@@ -195,7 +195,7 @@ impl PartialEq for ASN1Block {
} }
/// An ASN.1 OID. /// An ASN.1 OID.
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq, Eq)]
pub struct OID(Vec<BigUint>); pub struct OID(Vec<BigUint>);
impl OID { impl OID {