Struct serde_urlencoded::ser::TupleVariantSerializer [−][src]
pub struct TupleVariantSerializer<'output, T: 'output + UrlEncodedTarget> { /* fields omitted */ }
Tuple variant serializer.
Never instantiated, tuple variants are not supported.
Trait Implementations
impl<'output, Target> SerializeTupleVariant for TupleVariantSerializer<'output, Target> where
Target: 'output + UrlEncodedTarget, [src]
impl<'output, Target> SerializeTupleVariant for TupleVariantSerializer<'output, Target> where
Target: 'output + UrlEncodedTarget, type Ok = &'output mut UrlEncodedSerializer<Target>
Must match the Ok type of our Serializer.
type Error = Error
Must match the Error type of our Serializer.
fn serialize_field<T: ?Sized + Serialize>(
&mut self,
value: &T
) -> Result<(), Error>[src]
fn serialize_field<T: ?Sized + Serialize>(
&mut self,
value: &T
) -> Result<(), Error>Serialize a tuple variant field.
fn end(self) -> Result<Self::Ok, Error>[src]
fn end(self) -> Result<Self::Ok, Error>Finish serializing a tuple variant.
Auto Trait Implementations
impl<'output, T> !Send for TupleVariantSerializer<'output, T>
impl<'output, T> !Send for TupleVariantSerializer<'output, T>impl<'output, T> !Sync for TupleVariantSerializer<'output, T>
impl<'output, T> !Sync for TupleVariantSerializer<'output, T>