summaryrefslogtreecommitdiff
path: root/src/ser/mod.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/mod.rs
parent2cc32847ac45bee7d0b60020edda3cce7a07b4ce (diff)
parentb24505bcfed47b88c1f2aa13c8743aa4b4cd2c3f (diff)
Merge #11
11: Update serde to 0.9.3 and use serde::ser::Impossible
Diffstat (limited to 'src/ser/mod.rs')
-rw-r--r--src/ser/mod.rs9
1 files changed, 4 insertions, 5 deletions
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<T>>,
+ inner: ser::Impossible<&'output mut UrlEncodedSerializer<T>, Error>,
}
/// Tuple struct serializer.
///
/// Never instantiated, tuple structs are not supported.
pub struct TupleStructSerializer<'output, T: 'output + UrlEncodedTarget> {
- inner: void::VoidSerializer<&'output mut UrlEncodedSerializer<T>>,
+ inner: ser::Impossible<&'output mut UrlEncodedSerializer<T>, Error>,
}
/// Tuple variant serializer.
///
/// Never instantiated, tuple variants are not supported.
pub struct TupleVariantSerializer<'output, T: 'output + UrlEncodedTarget> {
- inner: void::VoidSerializer<&'output mut UrlEncodedSerializer<T>>,
+ inner: ser::Impossible<&'output mut UrlEncodedSerializer<T>, 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<T>>,
+ inner: ser::Impossible<&'output mut UrlEncodedSerializer<T>, Error>,
}
impl<'output, Target> ser::Serializer for Serializer<'output, Target>