summaryrefslogtreecommitdiff
path: root/src/ser/part.rs
diff options
context:
space:
mode:
authorbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-01-31 09:59:17 +0000
committerbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-01-31 09:59:17 +0000
commit4ef7cc6e85a3c17f341c3308b60e227e27e5e305 (patch)
tree7d38a9c38d48c855d806c77533929bdb085f6a01 /src/ser/part.rs
parent2cc32847ac45bee7d0b60020edda3cce7a07b4ce (diff)
parentb24505bcfed47b88c1f2aa13c8743aa4b4cd2c3f (diff)
Merge #11
11: Update serde to 0.9.3 and use serde::ser::Impossible
Diffstat (limited to 'src/ser/part.rs')
-rw-r--r--src/ser/part.rs19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/ser/part.rs b/src/ser/part.rs
index e720314..42653c0 100644
--- a/src/ser/part.rs
+++ b/src/ser/part.rs
@@ -1,7 +1,6 @@
use dtoa;
use itoa;
use ser::Error;
-use ser::void::VoidSerializer;
use serde::ser;
use std::str;
@@ -37,13 +36,13 @@ pub trait Sink: Sized {
impl<S: Sink> ser::Serializer for PartSerializer<S> {
type Ok = S::Ok;
type Error = Error;
- type SerializeSeq = VoidSerializer<S::Ok>;
- type SerializeTuple = VoidSerializer<S::Ok>;
- type SerializeTupleStruct = VoidSerializer<S::Ok>;
- type SerializeTupleVariant = VoidSerializer<S::Ok>;
- type SerializeMap = VoidSerializer<S::Ok>;
- type SerializeStruct = VoidSerializer<S::Ok>;
- type SerializeStructVariant = VoidSerializer<S::Ok>;
+ type SerializeSeq = ser::Impossible<S::Ok, Error>;
+ type SerializeTuple = ser::Impossible<S::Ok, Error>;
+ type SerializeTupleStruct = ser::Impossible<S::Ok, Error>;
+ type SerializeTupleVariant = ser::Impossible<S::Ok, Error>;
+ type SerializeMap = ser::Impossible<S::Ok, Error>;
+ type SerializeStruct = ser::Impossible<S::Ok, Error>;
+ type SerializeStructVariant = ser::Impossible<S::Ok, Error>;
fn serialize_bool(self, v: bool) -> Result<S::Ok, Error> {
self.sink.serialize_static_str(if v { "true" } else { "false" })
@@ -210,7 +209,7 @@ impl<S: Sink> ser::Serializer for PartSerializer<S> {
impl<S: Sink> PartSerializer<S> {
fn serialize_integer<I>(self, value: I) -> Result<S::Ok, Error>
- where I: itoa::Integer
+ where I: itoa::Integer,
{
let mut buf = [b'\0'; 20];
let len = itoa::write(&mut buf[..], value).unwrap();
@@ -219,7 +218,7 @@ impl<S: Sink> PartSerializer<S> {
}
fn serialize_floating<F>(self, value: F) -> Result<S::Ok, Error>
- where F: dtoa::Floating
+ where F: dtoa::Floating,
{
let mut buf = [b'\0'; 24];
let len = dtoa::write(&mut buf[..], value).unwrap();