summaryrefslogtreecommitdiffstats
path: root/src/de.rs
diff options
context:
space:
mode:
authorDavid Orchard <if_coding@fastmail.com>2021-08-02 23:17:08 -0700
committerDavid Orchard <if_coding@fastmail.com>2021-08-15 10:34:05 -0700
commitbe82af2a474b9c6ac85ec1e001af1704521820e6 (patch)
treeb065f9a4adaddfad570b370937e8081cd6fa70ed /src/de.rs
parent0e0ae2b359b5c943055c988c3c78f36db2503468 (diff)
Rename MapImpl to Map
Diffstat (limited to 'src/de.rs')
-rw-r--r--src/de.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de.rs b/src/de.rs
index 9aa6b45..60fa4ea 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -5,7 +5,7 @@ use serde::de;
use crate::config::Config;
use crate::error::*;
-use crate::map::MapImpl;
+use crate::map::Map;
use crate::value::{Table, Value, ValueKind};
impl<'de> de::Deserializer<'de> for Value {
@@ -200,7 +200,7 @@ struct MapAccess {
}
impl MapAccess {
- fn new(table: MapImpl<String, Value>) -> Self {
+ fn new(table: Map<String, Value>) -> Self {
MapAccess {
elements: table.into_iter().collect(),
}