Struct arrow_json::writer::Writer
source · pub struct Writer<W, F>where
W: Write,
F: JsonFormat,{ /* private fields */ }
Expand description
A JSON writer which serializes RecordBatch
es to a stream of
u8
encoded JSON objects. See the module level documentation for
detailed usage and examples. The specific format of the stream is
controlled by the JsonFormat
type parameter.
Implementations§
source§impl<W, F> Writer<W, F>where
W: Write,
F: JsonFormat,
impl<W, F> Writer<W, F>where
W: Write,
F: JsonFormat,
sourcepub fn write_row(&mut self, row: &Value) -> Result<(), ArrowError>
pub fn write_row(&mut self, row: &Value) -> Result<(), ArrowError>
Write a single JSON row to the output writer
sourcepub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
pub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
Convert the RecordBatch
into JSON rows, and write them to the output
sourcepub fn write_batches(
&mut self,
batches: &[&RecordBatch]
) -> Result<(), ArrowError>
pub fn write_batches( &mut self, batches: &[&RecordBatch] ) -> Result<(), ArrowError>
Convert the RecordBatch
into JSON rows, and write them to the output
sourcepub fn finish(&mut self) -> Result<(), ArrowError>
pub fn finish(&mut self) -> Result<(), ArrowError>
Finishes the output stream. This function must be called after
all record batches have been produced. (e.g. producing the final ']'
if writing
arrays.
sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Unwraps this Writer<W>
, returning the underlying writer
Trait Implementations§
source§impl<W, F> RecordBatchWriter for Writer<W, F>where
W: Write,
F: JsonFormat,
impl<W, F> RecordBatchWriter for Writer<W, F>where
W: Write,
F: JsonFormat,
source§fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
Write a single batch to the writer.
Auto Trait Implementations§
impl<W, F> RefUnwindSafe for Writer<W, F>where
F: RefUnwindSafe,
W: RefUnwindSafe,
impl<W, F> Send for Writer<W, F>
impl<W, F> Sync for Writer<W, F>
impl<W, F> Unpin for Writer<W, F>
impl<W, F> UnwindSafe for Writer<W, F>where
F: UnwindSafe,
W: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more