Trait miniserde::ser::Seq

source ·
pub trait Seq {
    // Required method
    fn next(&mut self) -> Option<&dyn Serialize>;
}
Expand description

Trait that can iterate elements of a sequence.

Refer to the module documentation for examples.

Required Methods§

source

fn next(&mut self) -> Option<&dyn Serialize>

Implementors§