Trait sqlite3::types::ToSql [] [src]

pub trait ToSql {
    fn to_sql(&self, s: &mut PreparedStatement, ix: ParamIx) -> SqliteResult<()>;
}

Values that can be bound to parameters in prepared statements.

Required Methods

Bind the ixth parameter to this value (self).

Implementors