aboutsummaryrefslogtreecommitdiff
path: root/src/value.rs
diff options
context:
space:
mode:
authorVincent Prouillet <vincent@wearewizards.io>2017-04-28 13:00:37 +0900
committerVincent Prouillet <vincent@wearewizards.io>2017-04-28 13:00:37 +0900
commit082ee7090212e8a377b2145fe82712cc41431fee (patch)
treecbcc059289278b7bf2b0d89ef3d3b9f7bdcde1ac /src/value.rs
parent45acd4f5b592536f013b94084faca41b42e48c13 (diff)
downloadmilf-rs-082ee7090212e8a377b2145fe82712cc41431fee.tar.gz
milf-rs-082ee7090212e8a377b2145fe82712cc41431fee.zip
Address comment and make test pass
Diffstat (limited to 'src/value.rs')
-rw-r--r--src/value.rs78
1 files changed, 5 insertions, 73 deletions
diff --git a/src/value.rs b/src/value.rs
index ebb14fc..dcc3567 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -516,20 +516,11 @@ impl<'de> de::Deserializer<'de> for Value {
where
V: de::Visitor<'de>,
{
- let (variant, value) = match self {
- Value::String(variant) => (variant, None),
- _ => {
- return Err(de::Error::invalid_type(de::Unexpected::UnitVariant, &"string only"),);
- }
- };
-
- visitor.visit_enum(
- EnumDeserializer {
- variant: variant,
- value: value,
- },
- )
-}
+ match self {
+ Value::String(variant) => visitor.visit_enum(variant.into_deserializer()),
+ _ => Err(de::Error::invalid_type(de::Unexpected::UnitVariant, &"string only")),
+ }
+ }
// `None` is interpreted as a missing field so be sure to implement `Some`
// as a present field.
@@ -545,65 +536,6 @@ impl<'de> de::Deserializer<'de> for Value {
tuple ignored_any newtype_struct identifier
}
}
-struct EnumDeserializer {
- variant: String,
- value: Option<Value>,
-}
-
-impl<'de> de::EnumAccess<'de> for EnumDeserializer {
- type Error = ::de::Error;
- type Variant = VariantDeserializer;
-
- fn variant_seed<V>(self, seed: V) -> Result<(V::Value, VariantDeserializer), Self::Error>
- where
- V: de::DeserializeSeed<'de>,
- {
- let variant = self.variant.into_deserializer();
- let visitor = VariantDeserializer { value: self.value };
- seed.deserialize(variant).map(|v| (v, visitor))
- }
-}
-
-struct VariantDeserializer {
- value: Option<Value>,
-}
-
-impl<'de> de::VariantAccess<'de> for VariantDeserializer {
- type Error = ::de::Error;
-
- fn unit_variant(self) -> Result<(), Self::Error> {
- match self.value {
- Some(value) => de::Deserialize::deserialize(value),
- None => Ok(()),
- }
- }
-
- fn newtype_variant_seed<T>(self, _: T) -> Result<T::Value, Self::Error>
- where
- T: de::DeserializeSeed<'de>,
- {
- Err(de::Error::invalid_type(de::Unexpected::UnitVariant, &"newtype variant"))
- }
-
- fn tuple_variant<V>(self, _len: usize, _: V) -> Result<V::Value, Self::Error>
- where
- V: de::Visitor<'de>,
- {
- Err(de::Error::invalid_type(de::Unexpected::UnitVariant, &"tuple variant"))
- }
-
- fn struct_variant<V>(
- self,
- _fields: &'static [&'static str],
- _: V,
- ) -> Result<V::Value, Self::Error>
- where
- V: de::Visitor<'de>,
- {
- Err(de::Error::invalid_type(de::Unexpected::UnitVariant, &"struct variant"))
- }
-}
-
struct SeqDeserializer {
iter: vec::IntoIter<Value>,