Trait sqlite3::QueryEach [] [src]

pub trait QueryEach<F> where
    F: FnMut(&mut ResultRow) -> SqliteResult<()>, 
{ fn query_each(
        &mut self,
        values: &[&ToSql],
        each_row: &mut F
    ) -> SqliteResult<()>; }

Mix in query_each() convenience function.

Required Methods

Process rows from a query after binding parameters.

Implementors