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

Returns the index of the column specified by self.

Implementations on Foreign Types

impl ColumnIndex for usize
[src]

[src]

impl<'a> ColumnIndex for &'a str
[src]

[src]

Implementors