Trait rbdc::db::Row

source ·
pub trait Row: 'static + Send + Debug {
    // Required methods
    fn meta_data(&self) -> Box<dyn MetaData>;
    fn get(&mut self, i: usize) -> Result<Value, Error>;
}
Expand description

Result set from executing a query against a statement

Required Methods§

source

fn meta_data(&self) -> Box<dyn MetaData>

get meta data about this result set

source

fn get(&mut self, i: usize) -> Result<Value, Error>

get Value from index

Implementors§