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§
fn colunms(&mut self, callback: BoxedCallback<Vec<Column>>)
fn next(&mut self, callback: BoxedCallback<bool>)
Sourcefn get(
&mut self,
name: ArgName,
column_type: ColumnType,
callback: BoxedCallback<Option<ArgValue>>,
)
fn get( &mut self, name: ArgName, column_type: ColumnType, callback: BoxedCallback<Option<ArgValue>>, )
Get current row value by arg name.