table

Function table 

Source
pub fn table<'a, 'b, T, Message, Theme, Renderer>(
    columns: impl IntoIterator<Item = Column<'a, 'b, T, Message, Theme, Renderer>>,
    rows: impl IntoIterator<Item = T>,
) -> Table<'a, Message, Theme, Renderer>
where T: Clone, Theme: Catalog, Renderer: Renderer,
Expand description

Creates a new Table with the given columns and rows.

Columns can be created using the column() function, while rows can be any iterator over some data type T.