diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-11 22:29:27 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-11 22:30:32 -0800 |
| commit | f9408377c9b42898cf95c01e23a573ee1667c34b (patch) | |
| tree | 61468cf7680b375a003395b30a921ae911a05f39 /src/serialization.rs | |
| parent | 25e10a82565d81b5243304c835d868a12b179557 (diff) | |
| download | milf-rs-f9408377c9b42898cf95c01e23a573ee1667c34b.tar.gz milf-rs-f9408377c9b42898cf95c01e23a573ee1667c34b.zip | |
Fix parsing nested tables in arrays
Closes #36
Diffstat (limited to 'src/serialization.rs')
| -rw-r--r-- | src/serialization.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/serialization.rs b/src/serialization.rs index ba96f89..457f361 100644 --- a/src/serialization.rs +++ b/src/serialization.rs @@ -64,6 +64,7 @@ pub struct Decoder { /// Enumeration of errors which can occur while encoding a rust value into a /// TOML value. +#[allow(missing_copy_implementations)] pub enum Error { /// Indication that a key was needed when a value was emitted, but no key /// was previously emitted. |