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.
Required Methods§
fn to_sql(&self) -> Result<ToSqlOutput<'_>, Error>
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".