Rows

Trait Rows 

Source
pub trait Rows {
    // Required method
    fn scan(&self, table: &Table) -> Result<Vec<Value>, SqlError>;
}
Expand description

Where a table’s rows come from. Implemented by whoever holds the running program.

Required Methods§

Source

fn scan(&self, table: &Table) -> Result<Vec<Value>, SqlError>

Every row of one table, in the order the collection holds them.

Implementors§