Trait typed_sql::query::insert::Insertable[][src]

pub trait Insertable {
    fn write_columns(sql: &mut String);
fn write_values(&self, sql: &mut String); }

Required methods

fn write_columns(sql: &mut String)[src]

fn write_values(&self, sql: &mut String)[src]

Implementations on Foreign Types

impl<I: Insertable> Insertable for &I[src]

fn write_columns(sql: &mut String)[src]

fn write_values(&self, sql: &mut String)[src]

Implementors

impl<S, I: ?Sized> Insertable for InsertSelect<S, I> where
    S: Select,
    I: Insertable
[src]

fn write_columns(sql: &mut String)[src]

fn write_values(&self, sql: &mut String)[src]