Trait serde::ser::SerializeStruct[][src]

pub trait SerializeStruct {
    type Ok;
    type Error: Error;
    fn serialize_field<T: ?Sized>(
        &mut self,
        key: &'static str,
        value: &T
    ) -> Result<(), Self::Error>
    where
        T: Serialize
;
fn end(self) -> Result<Self::Ok, Self::Error>; fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error> { ... } }

Returned from Serializer::serialize_struct.

Example use

use serde::ser::{Serialize, SerializeStruct, Serializer};

struct Rgb {
    r: u8,
    g: u8,
    b: u8,
}

impl Serialize for Rgb {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        let mut rgb = serializer.serialize_struct("Rgb", 3)?;
        rgb.serialize_field("r", &self.r)?;
        rgb.serialize_field("g", &self.g)?;
        rgb.serialize_field("b", &self.b)?;
        rgb.end()
    }
}

Example implementation

The example data format presented on the website demonstrates an implementation of SerializeStruct for a basic JSON data format.

Associated Types

type Ok[src]

Must match the Ok type of our Serializer.

type Error: Error[src]

Must match the Error type of our Serializer.

Loading content...

Required methods

fn serialize_field<T: ?Sized>(
    &mut self,
    key: &'static str,
    value: &T
) -> Result<(), Self::Error> where
    T: Serialize
[src]

Serialize a struct field.

fn end(self) -> Result<Self::Ok, Self::Error>[src]

Finish serializing a struct.

Loading content...

Provided methods

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>[src]

Indicate that a struct field has been skipped.

Loading content...

Implementors

impl<Ok, Error> SerializeStruct for Impossible<Ok, Error> where
    Error: Error
[src]

type Ok = Ok

type Error = Error

Loading content...