Struct serde_urlencoded::ser::TupleStructSerializer
[−]
[src]
pub struct TupleStructSerializer<'output, T: 'output + UrlEncodedTarget> { /* fields omitted */ }
Tuple struct serializer.
Never instantiated, tuple structs are not supported.
Trait Implementations
impl<'output, Target> SerializeTupleStruct for TupleStructSerializer<'output, Target> where Target: 'output + UrlEncodedTarget
[src]
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>
value: &T)
-> Result<(), Error>
Serialize a tuple struct field.
fn end(self) -> Result<Self::Ok, Error>
Finish serializing a tuple struct.