pub trait IntoRecords {
    type Cell;
    type IterColumns: IntoIterator<Item = Self::Cell>;
    type IterRows: IntoIterator<Item = Self::IterColumns>;

    // Required method
    fn iter_rows(self) -> Self::IterRows;
}
Expand description

The representation of data, rows and columns of a Grid.

Required Associated Types§

source

type Cell

A string representation of a Grid cell.

source

type IterColumns: IntoIterator<Item = Self::Cell>

Cell iterator inside a row.

source

type IterRows: IntoIterator<Item = Self::IterColumns>

Rows iterator.

Required Methods§

source

fn iter_rows(self) -> Self::IterRows

Returns an iterator over rows.

Implementors§