pub fn serialize<A>(
columns: &Chunk<A>,
options: &SerializeOptions
) -> Result<Vec<Vec<u8, Global>, Global>, Error> where
A: AsRef<dyn Array + 'static>, Available on crate feature
csv-file 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.