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