Struct serde_urlencoded::ser::MapSerializer [−][src]
pub struct MapSerializer<'input, 'output, Target: UrlEncodedTarget> { /* fields omitted */ }
Expand description
Map serializer.
Trait Implementations
impl<'input, 'output, Target> SerializeMap for MapSerializer<'input, 'output, Target> where
Target: 'output + UrlEncodedTarget,
impl<'input, 'output, Target> SerializeMap for MapSerializer<'input, 'output, Target> where
Target: 'output + UrlEncodedTarget,
type Ok = &'output mut UrlEncodedSerializer<'input, Target>
type Ok = &'output mut UrlEncodedSerializer<'input, Target>
Must match the Ok
type of our Serializer
.
Serialize a map entry consisting of a key and a value. Read more
Serialize a map key. Read more
Serialize a map value. Read more