pub trait ToSql {
    fn to_sql(&self) -> Result<ToSqlOutput<'_>>;
}
Expand description

A trait for types that can be converted into SQLite values. Returns Error::ToSqlConversionFailure if the conversion fails.

Required Methods

Converts Rust value to SQLite value

Implementations on Foreign Types

Implementors