pub struct IncompleteInsertStatement<T, Op = Insert> { /* private fields */ }
Expand description

The structure returned by insert_into.

The provided methods values and default_values will insert data into the targeted table.

Implementations§

source§

impl<T, Op> IncompleteInsertStatement<T, Op>where T: QuerySource,

source

pub fn default_values(self) -> InsertStatement<T, DefaultValues, Op>

Inserts DEFAULT VALUES into the targeted table.

diesel::sql_query("CREATE TABLE users (
    name VARCHAR(255) NOT NULL DEFAULT 'Sean',
    hair_color VARCHAR(255) NOT NULL DEFAULT 'Green'
)").execute(connection)?;

insert_into(users)
    .default_values()
    .execute(connection)
    .unwrap();
let inserted_user = users.first(connection)?;
let expected_data = (String::from("Sean"), String::from("Green"));

assert_eq!(expected_data, inserted_user);
source

pub fn values<U>(self, records: U) -> InsertStatement<T, U::Values, Op>where U: Insertable<T>,

Inserts the given values into the table passed to insert_into.

See the documentation of insert_into for usage examples.

This method can sometimes produce extremely opaque error messages due to limitations of the Rust language. If you receive an error about “overflow evaluating requirement” as a result of calling this method, you may need an & in front of the argument to this method.

Trait Implementations§

source§

impl<T: Clone, Op: Clone> Clone for IncompleteInsertStatement<T, Op>

source§

fn clone(&self) -> IncompleteInsertStatement<T, Op>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, Op: Debug> Debug for IncompleteInsertStatement<T, Op>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Copy, Op: Copy> Copy for IncompleteInsertStatement<T, Op>

Auto Trait Implementations§

§

impl<T, Op> RefUnwindSafe for IncompleteInsertStatement<T, Op>where Op: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, Op> Send for IncompleteInsertStatement<T, Op>where Op: Send, T: Send,

§

impl<T, Op> Sync for IncompleteInsertStatement<T, Op>where Op: Sync, T: Sync,

§

impl<T, Op> Unpin for IncompleteInsertStatement<T, Op>where Op: Unpin, T: Unpin,

§

impl<T, Op> UnwindSafe for IncompleteInsertStatement<T, Op>where Op: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V