Trait miniserde::ser::Map[][src]

pub trait Map {
    fn next(&mut self) -> Option<(Cow<'_, str>, &dyn Serialize)>;
}
Expand description

Trait that can iterate key-value entries of a map or struct.

[Refer to the module documentation for examples.][::ser]

Required methods

Implementors