pub trait SQLiteToSQL {
// Required method
fn to_sql(&self) -> Result<ToSqlOutput<'_>, Error>;
}Expand description
A trait for types that can be converted into SQLite values.
pub trait SQLiteToSQL {
// Required method
fn to_sql(&self) -> Result<ToSqlOutput<'_>, Error>;
}A trait for types that can be converted into SQLite values.