pub trait FromSql: Sized {
    fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>;
}
Expand description

A trait for types that can be created from a SQLite value.

Required Methods

Converts SQLite value into Rust value.

Implementations on Foreign Types

Implementors