diff options
author | Eric Huss <eric@huss.org> | 2019-03-11 11:34:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 11:34:30 -0700 |
commit | dbdcc9ccc4233b4a7b3a1ce42d49fb863f1c903a (patch) | |
tree | 45187eadf0547740dbe82c9cda4737c72ca693be | |
parent | 4fb12b493edaae62a3b6fd5320e526ae7cc9542e (diff) | |
parent | fbc055771b54d0c40232c87a4266fcc2ea2380e9 (diff) | |
download | milf-rs-dbdcc9ccc4233b4a7b3a1ce42d49fb863f1c903a.tar.gz milf-rs-dbdcc9ccc4233b4a7b3a1ce42d49fb863f1c903a.zip |
Merge pull request #292 from omarabid/master
Add PartialEq to Toml::de
-rw-r--r-- | src/de.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -79,12 +79,12 @@ where } /// Errors that can occur when deserializing a type. -#[derive(Debug, Clone)] +#[derive(Debug, PartialEq, Clone)] pub struct Error { inner: Box<ErrorInner>, } -#[derive(Debug, Clone)] +#[derive(Debug, PartialEq, Clone)] struct ErrorInner { kind: ErrorKind, line: Option<usize>, @@ -94,7 +94,7 @@ struct ErrorInner { } /// Errors that can occur when deserializing a type. -#[derive(Debug, Clone)] +#[derive(Debug, PartialEq, Clone)] enum ErrorKind { /// EOF was reached when looking for a value UnexpectedEof, |