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

pub struct IncompleteInsertStatement<T, Op> {
    // some 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) -> InsertStatement<S, T, Op> where InsertStatement<S, T, Op>: AsQuery

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

impl<T: Copy, Op: Copy> Copy for IncompleteInsertStatement<T, Op>
[src]

impl<T: Debug, Op: Debug> Debug for IncompleteInsertStatement<T, Op>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.