pub fn serialize<A>(
columns: &Chunk<A>,
options: &SerializeOptions
) -> Result<Vec<Vec<u8, Global>, Global>, ArrowError> where
A: AsRef<dyn Array + 'static>, This is supported on (crate features
io_csv_read or io_csv_read_async or io_csv_write) and crate feature io_csv_write only.Expand description
Serializes Chunk to a vector of rows.
The vector is guaranteed to have columns.len() entries.
Each row is guaranteed to have columns.array().len() fields.