pub trait SerializeMapBuilder {
// Required method
fn create_ser_map(&self) -> Box<dyn Map + '_>;
}Expand description
Produces a ser::Map over this type’s fields for flatten serialization.
Enables a parent to inline this type’s key-value pairs instead of nesting
them in a sub-object, without going through an intermediate Value.