Trait sqlite::Readable

source ·
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 first column has index 0.

Implementations on Foreign Types

Implementors