Trait sqlite::ReadableWithIndex
source · pub trait ReadableWithIndex: Sized {
// Required method
fn read<T: ColumnIndex>(_: &Statement<'_>, _: T) -> Result<Self>;
}
Expand description
A type suitable for reading from a prepared statement given a column index.
Required Methods§
sourcefn read<T: ColumnIndex>(_: &Statement<'_>, _: T) -> Result<Self>
fn read<T: ColumnIndex>(_: &Statement<'_>, _: T) -> Result<Self>
Read from a column.
In case of integer indices, the first column has index 0.
Object Safety§
This trait is not object safe.