pub trait IntoSqlite {
// Required method
fn into_sqlite(&self) -> String;
}Expand description
A trait for converting a value to a SQLite value.
This is useful for making custom types that can be used as default value for columns.
§Note
If you want to use a custom type as a column type, you need to implement the rusqlite’s ToSql trait.