pub fn write_table<O, Header, Rows, RowItem>(
    out: &mut O,
    header: Header,
    rows: Rows
) -> Result<(), Error> where
    O: Write,
    Rows: IntoIterator<Item = RowItem>,
    RowItem: IntoIterator<Item = String>,
    Header: IntoIterator<Item = String>, 
Expand description

Write a list of objects into a csv file.