Trait sqlx_plus::Insertable
source · [−]pub trait Insertable {
type Database: Database;
fn table_name() -> &'static str;
fn insert_columns() -> Vec<&'static str>;
fn bind_fields<'q, Q>(&'q self, q: Q) -> Q
where
Q: QueryBindExt<'q, Self::Database>;
}