Struct diesel::query_builder::insert_statement::IncompleteInsertStatement
[−]
[src]
pub struct IncompleteInsertStatement<T, Op> { /* fields omitted */ }The structure returned by insert. The only thing that can be done with it
is call into.
Methods
impl<T, Op> IncompleteInsertStatement<T, Op>[src]
pub fn into<S>(self, target: S) -> InsertStatement<S, T, Op> where
InsertStatement<S, T, Op>: AsQuery, [src]
InsertStatement<S, T, Op>: AsQuery,
Specify which table the data passed to insert should be added to.
Trait Implementations
impl<T: Debug, Op: Debug> Debug for IncompleteInsertStatement<T, Op>[src]
impl<T: Copy, Op: Copy> Copy for IncompleteInsertStatement<T, Op>[src]
impl<T: Clone, Op: Clone> Clone for IncompleteInsertStatement<T, Op>[src]
fn clone(&self) -> IncompleteInsertStatement<T, Op>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more