Trait oracle::ColumnIndex
[−]
[src]
pub trait ColumnIndex { fn idx(&self, column_names: &Vec<String>) -> Result<usize>; }
A trait implemented by types that can index into columns of a row.
Required Methods
fn idx(&self, column_names: &Vec<String>) -> Result<usize>
Returns the index of the column specified by self
.