pub type LineDelimitedWriter<W> = Writer<W, LineDelimited>;Expand description
A JSON writer which serializes [RecordBatch]es to newline delimited JSON objects.
Aliased Type§
pub struct LineDelimitedWriter<W> {
writer: W,
started: bool,
finished: bool,
format: LineDelimited,
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: LineDelimitedDetermines how the byte stream is formatted
options: EncoderOptionsControls how JSON should be encoded, e.g. whether to write explicit nulls or skip them