SQLModel

Trait SQLModel 

Source
pub trait SQLModel<'a, V: SQLParam>: ToSQL<'a, V> {
    // Required methods
    fn columns(&self) -> Box<[&'static dyn SQLColumnInfo]>;
    fn values(&self) -> SQL<'a, V>;
}

Required Methods§

Source

fn columns(&self) -> Box<[&'static dyn SQLColumnInfo]>

Source

fn values(&self) -> SQL<'a, V>

Implementors§