Trait 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§