Function build_list_table

Source
pub fn build_list_table<I, T, O>(
    data: I,
    options: &O,
) -> (Vec<String>, Vec<Vec<String>>)
where I: Iterator<Item = T>, T: StructTable, O: StructTableOptions,
Expand description

Build a table for list of entries

Returns vector of vector of strings with first row being table headers and all other rows are the values themselves.