pub trait ToSqlStatement {
    fn to_sql_statement(&self) -> String;
}
Expand description

A trait to convert a reference of a type to a sql statement for use in rusqlite::Connection prepare.

Required Methods

Convert the reference to a statement.

Implementors