From bc8197c884e7a5dae25b6aedb02eac98145bee92 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Tue, 31 Jan 2017 10:42:51 +0100 Subject: Update serde to 0.9.3 and use serde::ser::Impossible --- src/ser/mod.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/ser/mod.rs') diff --git a/src/ser/mod.rs b/src/ser/mod.rs index 50355fd..f36be4f 100644 --- a/src/ser/mod.rs +++ b/src/ser/mod.rs @@ -4,7 +4,6 @@ mod key; mod pair; mod part; mod value; -mod void; use serde::ser; use std::borrow::Cow; @@ -102,21 +101,21 @@ pub struct SeqSerializer<'output, Target: 'output + UrlEncodedTarget> { /// /// Never instantiated, tuples are not supported at top-level. pub struct TupleSerializer<'output, T: 'output + UrlEncodedTarget> { - inner: void::VoidSerializer<&'output mut UrlEncodedSerializer>, + inner: ser::Impossible<&'output mut UrlEncodedSerializer, Error>, } /// Tuple struct serializer. /// /// Never instantiated, tuple structs are not supported. pub struct TupleStructSerializer<'output, T: 'output + UrlEncodedTarget> { - inner: void::VoidSerializer<&'output mut UrlEncodedSerializer>, + inner: ser::Impossible<&'output mut UrlEncodedSerializer, Error>, } /// Tuple variant serializer. /// /// Never instantiated, tuple variants are not supported. pub struct TupleVariantSerializer<'output, T: 'output + UrlEncodedTarget> { - inner: void::VoidSerializer<&'output mut UrlEncodedSerializer>, + inner: ser::Impossible<&'output mut UrlEncodedSerializer, Error>, } /// Map serializer. @@ -134,7 +133,7 @@ pub struct StructSerializer<'output, Target: 'output + UrlEncodedTarget> { /// /// Never instantiated, struct variants are not supported. pub struct StructVariantSerializer<'output, T: 'output + UrlEncodedTarget> { - inner: void::VoidSerializer<&'output mut UrlEncodedSerializer>, + inner: ser::Impossible<&'output mut UrlEncodedSerializer, Error>, } impl<'output, Target> ser::Serializer for Serializer<'output, Target> -- cgit v1.2.3