From 4a6b46f9222cad61ceb8e9246b4cc33eb4f61f57 Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Wed, 15 Feb 2017 17:43:33 +0000 Subject: Some _very_ hacky code to get nested url_encoded params working. --- src/ser/part.rs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/ser/part.rs') diff --git a/src/ser/part.rs b/src/ser/part.rs index 42653c0..d2ade0a 100644 --- a/src/ser/part.rs +++ b/src/ser/part.rs @@ -14,8 +14,8 @@ impl PartSerializer { } } -pub trait Sink: Sized { - type Ok; +pub trait Sink: Sized + ser::SerializeStruct { + // type Ok; fn serialize_static_str(self, value: &'static str) @@ -33,7 +33,7 @@ pub trait Sink: Sized { fn unsupported(self) -> Error; } -impl ser::Serializer for PartSerializer { +impl> ser::Serializer for PartSerializer { type Ok = S::Ok; type Error = Error; type SerializeSeq = ser::Impossible; @@ -41,7 +41,7 @@ impl ser::Serializer for PartSerializer { type SerializeTupleStruct = ser::Impossible; type SerializeTupleVariant = ser::Impossible; type SerializeMap = ser::Impossible; - type SerializeStruct = ser::Impossible; + type SerializeStruct = S; type SerializeStructVariant = ser::Impossible; fn serialize_bool(self, v: bool) -> Result { @@ -193,7 +193,9 @@ impl ser::Serializer for PartSerializer { _name: &'static str, _len: usize) -> Result { - Err(self.sink.unsupported()) + // Err(self.sink.unsupported()) + Ok(self.sink) + } fn serialize_struct_variant @@ -207,7 +209,7 @@ impl ser::Serializer for PartSerializer { } } -impl PartSerializer { +impl> PartSerializer { fn serialize_integer(self, value: I) -> Result where I: itoa::Integer, { -- cgit v1.2.3