[][src]Trait sqlite::Readable

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

A type suitable for reading from a prepared statement.

Required methods

fn read(_: &Statement, _: usize) -> Result<Self>

Read from a column.

The leftmost column has the index 0.

Loading content...

Implementations on Foreign Types

impl Readable for f64[src]

impl Readable for i64[src]

impl Readable for String[src]

impl Readable for Vec<u8>[src]

Loading content...

Implementors

impl Readable for Value[src]

Loading content...