diff options
| author | Steven Fackler <[email protected]> | 2017-11-21 08:47:55 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-11-21 08:47:55 -0800 |
| commit | 6f54dff6506fad0aba32a6d56231693515547a79 (patch) | |
| tree | f743cad1570d3763421b01a425330fd073d86f8d /openssl/src/bn.rs | |
| parent | Remove travis badge (diff) | |
| parent | Update foreign-types to 0.3 (diff) | |
| download | rust-openssl-6f54dff6506fad0aba32a6d56231693515547a79.tar.xz rust-openssl-6f54dff6506fad0aba32a6d56231693515547a79.zip | |
Merge pull request #778 from nox/foreign-types
Update foreign-types to 0.3
Diffstat (limited to 'openssl/src/bn.rs')
| -rw-r--r-- | openssl/src/bn.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/openssl/src/bn.rs b/openssl/src/bn.rs index fc6e0bb8..82ec38b6 100644 --- a/openssl/src/bn.rs +++ b/openssl/src/bn.rs @@ -1090,12 +1090,6 @@ impl BigNum { } } -impl AsRef<BigNumRef> for BigNum { - fn as_ref(&self) -> &BigNumRef { - self.deref() - } -} - impl fmt::Debug for BigNumRef { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self.to_dec_str() { |