Trait marine_sqlite_connector::Readable[][src]

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

A type suitable for reading from a prepared statement.

Required methods

Read from a column.

The leftmost column has the index 0.

Implementations on Foreign Types

Implementors