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§
Sourcetype IterColumns: IntoIterator<Item = Self::Cell>
type IterColumns: IntoIterator<Item = Self::Cell>
Cell iterator inside a row.
Sourcetype IterRows: IntoIterator<Item = Self::IterColumns>
type IterRows: IntoIterator<Item = Self::IterColumns>
Rows iterator.