[][src]Trait geng_core::prelude::serde::ser::SerializeSeq

pub trait SerializeSeq {
    type Ok;
    type Error: Error;
    fn serialize_element<T>(&mut self, value: &T) -> Result<(), Self::Error>
    where
        T: Serialize + ?Sized
;
fn end(self) -> Result<Self::Ok, Self::Error>; }

Returned from Serializer::serialize_seq.

Example use

This code runs with edition 2018
use serde::ser::{Serialize, Serializer, SerializeSeq};

impl<T> Serialize for Vec<T>
where
    T: Serialize,
{
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        let mut seq = serializer.serialize_seq(Some(self.len()))?;
        for element in self {
            seq.serialize_element(element)?;
        }
        seq.end()
    }
}

Example implementation

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

Associated Types

type Ok

Must match the Ok type of our Serializer.

type Error: Error

Must match the Error type of our Serializer.

Loading content...

Required methods

fn serialize_element<T>(&mut self, value: &T) -> Result<(), Self::Error> where
    T: Serialize + ?Sized

Serialize a sequence element.

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

Finish serializing a sequence.

Loading content...

Implementations on Foreign Types

impl<'a, W> SerializeSeq for Compound<'a, W> where
    W: Write
[src]

type Error = Error

type Ok = ()

Loading content...

Implementors

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

type Ok = Ok

type Error = Error

Loading content...