Trait sqlite::Readable [] [src]

pub trait Readable: Sized {
    fn read(_: &Statement, _: usize) -> Result<Self>;
}

A type suitable for reading from a prepared statement.

Required Methods

Read from a column.

The leftmost column has the index 0.

Implementors