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>
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors