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]
fn into<S>(self, target: S) -> T::InsertStatement where T: IntoInsertStatement<S, Op, NoReturningClause>
Specify which table the data passed to insert
should be added to.
Trait Implementations
impl<T: Clone, Op: Clone> Clone for IncompleteInsertStatement<T, Op>
[src]
fn clone(&self) -> IncompleteInsertStatement<T, Op>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more