pub trait SqlFnOutput {
    // Required method
    fn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>;
}
Available on crate feature functions only.
Expand description

Result of an SQL function

Required Methods§

source

fn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>

Converts Rust value to SQLite value with an optional sub-type

Implementations on Foreign Types§

source§

impl<T: ToSql> SqlFnOutput for (T, SubType)

Implementors§

source§

impl<T: ToSql> SqlFnOutput for T