Trait SqlFnOutput

Source
pub trait SqlFnOutput {
    // Required method
    fn to_sql(&self) -> Result<(ToSqlOutput<'_>, SubType)>;
}
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 subtype

Implementations on Foreign Types§

Source§

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

Implementors§

Source§

impl<T: ToSql> SqlFnOutput for T