use ser::Error; use serde::ser; use std::str; pub struct PartSerializer { sink: S, } impl PartSerializer { pub fn new(sink: S) -> Self { PartSerializer { sink: sink } } } pub trait Sink: Sized { type Ok; fn serialize_bool(self, value: bool) -> Result; fn serialize_static_str(self, value: &'static str) -> Result; fn serialize_str(self, value: &str) -> Result; fn serialize_string(self, value: String) -> Result; fn serialize_none(self) -> Result; fn serialize_some (self, value: &T) -> Result; fn unsupported(self) -> Error; } impl ser::Serializer for PartSerializer { type Ok = S::Ok; type Error = Error; type SerializeSeq = Self; type SerializeTuple = Self; type SerializeTupleStruct = Self; type SerializeTupleVariant = Self; type SerializeMap = Self; type SerializeStruct = Self; type SerializeStructVariant = Self; fn serialize_bool(self, v: bool) -> Result { self.sink.serialize_bool(v) } fn serialize_i8(self, v: i8) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_i16(self, v: i16) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_i32(self, v: i32) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_i64(self, v: i64) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_u8(self, v: u8) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_u16(self, v: u16) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_u32(self, v: u32) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_u64(self, v: u64) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_f32(self, v: f32) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_f64(self, v: f64) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_char(self, v: char) -> Result { self.sink.serialize_string(v.to_string()) } fn serialize_str(self, value: &str) -> Result { self.sink.serialize_str(value) } fn serialize_bytes(self, value: &[u8]) -> Result { match str::from_utf8(value) { Ok(value) => self.sink.serialize_str(value), Err(err) => Err(Error::Utf8(err)), } } fn serialize_unit(self) -> Result { Err(self.sink.unsupported()) } fn serialize_unit_struct(self, name: &'static str) -> Result { self.sink.serialize_static_str(name.into()) } fn serialize_unit_variant(self, _name: &'static str, _variant_index: usize, variant: &'static str) -> Result { self.sink.serialize_static_str(variant.into()) } fn serialize_newtype_struct (self, _name: &'static str, value: &T) -> Result { value.serialize(self) } fn serialize_newtype_variant (self, _name: &'static str, _variant_index: usize, _variant: &'static str, _value: &T) -> Result { Err(self.sink.unsupported()) } fn serialize_none(self) -> Result { self.sink.serialize_none() } fn serialize_some(self, value: &T) -> Result { self.sink.serialize_some(value) } fn serialize_seq(self, _len: Option) -> Result { Err(self.sink.unsupported()) } fn serialize_seq_fixed_size(self, _len: usize) -> Result { Err(self.sink.unsupported()) } fn serialize_tuple(self, _len: usize) -> Result { Err(self.sink.unsupported()) } fn serialize_tuple_struct(self, _name: &'static str, _len: usize) -> Result { Err(self.sink.unsupported()) } fn serialize_tuple_variant(self, _name: &'static str, _variant_index: usize, _variant: &'static str, _len: usize) -> Result { Err(self.sink.unsupported()) } fn serialize_map(self, _len: Option) -> Result { Err(self.sink.unsupported()) } fn serialize_struct(self, _name: &'static str, _len: usize) -> Result { Err(self.sink.unsupported()) } fn serialize_struct_variant(self, _name: &'static str, _variant_index: usize, _variant: &'static str, _len: usize) -> Result { Err(self.sink.unsupported()) } } impl ser::SerializeSeq for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_element(&mut self, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeTuple for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_element(&mut self, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeTupleStruct for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_field(&mut self, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeTupleVariant for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_field(&mut self, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeMap for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_key(&mut self, _key: &T) -> Result<(), Error> { unreachable!() } fn serialize_value(&mut self, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeStruct for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_field(&mut self, _key: &'static str, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } } impl ser::SerializeStructVariant for PartSerializer { type Ok = S::Ok; type Error = Error; fn serialize_field(&mut self, _key: &'static str, _value: &T) -> Result<(), Error> { unreachable!() } fn end(self) -> Result { unreachable!() } }