[][src]Trait c3p0_pool_sqlite::rusqlite::RowIndex

pub trait RowIndex {
    fn idx(&self, stmt: &Statement) -> Result<usize, Error>;
}

A trait implemented by types that can index into columns of a row.

Required methods

fn idx(&self, stmt: &Statement) -> Result<usize, Error>

Returns the index of the appropriate column, or None if no such column exists.

Loading content...

Implementations on Foreign Types

impl<'_> RowIndex for &'_ str[src]

impl RowIndex for usize[src]

Loading content...

Implementors

Loading content...