Loading openssl/src/bn.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1229,7 +1229,7 @@ impl Ord for BigNumRef { impl PartialOrd for BigNum { fn partial_cmp(&self, oth: &BigNum) -> Option<Ordering> { self.deref().partial_cmp(oth.deref()) Some(self.cmp(oth)) } } Loading openssl/src/x509/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -832,7 +832,7 @@ impl Ord for X509 { impl PartialOrd for X509 { fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { X509Ref::partial_cmp(self, other) Some(self.cmp(other)) } } Loading Loading
openssl/src/bn.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1229,7 +1229,7 @@ impl Ord for BigNumRef { impl PartialOrd for BigNum { fn partial_cmp(&self, oth: &BigNum) -> Option<Ordering> { self.deref().partial_cmp(oth.deref()) Some(self.cmp(oth)) } } Loading
openssl/src/x509/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -832,7 +832,7 @@ impl Ord for X509 { impl PartialOrd for X509 { fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { X509Ref::partial_cmp(self, other) Some(self.cmp(other)) } } Loading