Trait Rows

Source
pub trait Rows: Send {
    // Required methods
    fn colunms(&mut self, callback: BoxedCallback<Vec<Column>>);
    fn next(&mut self, callback: BoxedCallback<bool>);
    fn get(
        &mut self,
        name: ArgName,
        column_type: ColumnType,
        callback: BoxedCallback<Option<ArgValue>>,
    );
}

Required Methods§

Source

fn colunms(&mut self, callback: BoxedCallback<Vec<Column>>)

Source

fn next(&mut self, callback: BoxedCallback<bool>)

Source

fn get( &mut self, name: ArgName, column_type: ColumnType, callback: BoxedCallback<Option<ArgValue>>, )

Get current row value by arg name.

Implementors§