pub trait AsSql<'a> {
    fn as_sql(&'a self) -> SqlOutput<'a>;
}
Expand description

A helper trait for types we can’t implement rusqlite::ToSql for due to the orphan rule.

Required Methods

Convert this type to sql which might fail.

Implementations on Foreign Types

Implementors