pub trait SqlFnOutput {
// Required method
fn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>;
}
Expand description
Result of an SQL function
Required Methods§
Sourcefn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>
fn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>
Converts Rust value to SQLite value with an optional subtype