pub fn write_chunk<W, A>(
writer: &mut W,
columns: &Chunk<A>,
options: &SerializeOptions
) -> Result<(), ArrowError> where
W: Write,
A: AsRef<dyn Array + 'static>,
This is supported on crate feature
io_csv_write
only.Expand description
Writes Chunk
to writer
according to the serialization options options
.