aboutsummaryrefslogtreecommitdiff
path: root/src/de.rs
diff options
context:
space:
mode:
authorAzriel Hoh <azriel91@gmail.com>2018-10-22 10:33:20 +1300
committerAzriel Hoh <azriel91@gmail.com>2018-11-10 11:10:34 +1300
commit00ee52194039594e2e842c4448ad952cbd6103da (patch)
treec7db9badd859eef52e3380c366007e9af1939ba7 /src/de.rs
parentfcc4a58617ea27a061f445b576e3fafc91ad6998 (diff)
downloadmilf-rs-00ee52194039594e2e842c4448ad952cbd6103da.tar.gz
milf-rs-00ee52194039594e2e842c4448ad952cbd6103da.zip
Maintain compatibility with Rust 1.15
Issue #225
Diffstat (limited to 'src/de.rs')
-rw-r--r--src/de.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de.rs b/src/de.rs
index 7fd1387..da30699 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -829,7 +829,7 @@ impl<'de> de::VariantAccess<'de> for TableEnumDeserializer<'de> {
})
// Fold all values into a `Vec`, or return the first error.
.fold(Ok(Vec::with_capacity(len)), |result, value_result| {
- result.and_then(|mut tuple_values| match value_result {
+ result.and_then(move |mut tuple_values| match value_result {
Ok(value) => {
tuple_values.push(value);
Ok(tuple_values)