pub trait MetaData: Debug {
// Required methods
fn column_len(&self) -> usize;
fn column_name(&self, i: usize) -> String;
fn column_type(&self, i: usize) -> String;
}
Expand description
Meta data for result set
pub trait MetaData: Debug {
// Required methods
fn column_len(&self) -> usize;
fn column_name(&self, i: usize) -> String;
fn column_type(&self, i: usize) -> String;
}
Meta data for result set