Struct diesel::query_builder::insert_statement::IncompleteInsertStatement [] [src]

pub struct IncompleteInsertStatement<T> {
    // some fields omitted
}

The structure returned by insert. The only thing that can be done with it is call into.

Methods

impl<T> IncompleteInsertStatement<T>
[src]

fn into<S>(self, target: S) -> InsertStatement<S, T> where InsertStatement<S, T>: AsQuery

Specify which table the data passed to insert should be added to.