pub trait Rows { // Required method fn scan(&self, table: &Table) -> Result<Vec<Value>, SqlError>; }
Where a table’s rows come from. Implemented by whoever holds the running program.
Every row of one table, in the order the collection holds them.