| commit | eedf737d91722868277c0aadc34e5a2c880ed00a | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Fri May 22 11:08:50 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Fri May 22 11:08:50 2020 -0700 |
| tree | 26d413cac8638b976a7e4facb73e35cd08e915a5 | |
| parent | e3b78ea4092bd52202168fd27ee888259e5f3a1e [diff] [blame] |
Revert exception change from PR 210
diff --git a/src/exception.rs b/src/exception.rs index e16916a..125e484 100644 --- a/src/exception.rs +++ b/src/exception.rs
@@ -1,7 +1,7 @@ use std::fmt::{self, Debug, Display}; /// Exception thrown from an `extern "C"` function. -#[derive(Debug, PartialEq)] +#[derive(Debug)] pub struct Exception { pub(crate) what: Box<str>, }