pub fn serialize<A: AsRef<dyn Array>>(
    chunk: &Chunk<A>,
    options: &SerializeOptions
) -> Result<Vec<Vec<u8>>>
Available 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.