pub type ArrayWriter<W> = Writer<W, JsonArray>;Expand description
A JSON writer which serializes [RecordBatch]es to JSON arrays.
Aliased Type§
pub struct ArrayWriter<W> {
writer: W,
started: bool,
finished: bool,
format: JsonArray,
options: EncoderOptions,
}Fields§
§writer: WUnderlying writer to use to write bytes
started: boolHas the writer output any records yet?
finished: boolIs the writer finished?
format: JsonArrayDetermines how the byte stream is formatted
options: EncoderOptionsControls how JSON should be encoded, e.g. whether to write explicit nulls or skip them