pub trait ToSqlStatement {
    // Required method
    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§

source

fn to_sql_statement(&self) -> String

Convert the reference to a statement.

Implementors§