pub trait FieldWriter: Send {
    fn write_next(&mut self, obj: impl Serialize + Send);
}
Expand description

Allows serializing individual records of an infinite collection.

Required Methods

Write the next obj into the index

Implementors