Struct diesel::query_builder::IncompleteInsertStatement
source · [−]pub struct IncompleteInsertStatement<T, Op> { /* 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
sourceimpl<T, Op> IncompleteInsertStatement<T, Op>
impl<T, Op> IncompleteInsertStatement<T, Op>
sourcepub fn default_values(self) -> InsertStatement<T, DefaultValues, Op>
pub fn default_values(self) -> InsertStatement<T, DefaultValues, Op>
Inserts DEFAULT VALUES
into the targeted table.
connection.execute("CREATE TABLE users (
name VARCHAR(255) NOT NULL DEFAULT 'Sean',
hair_color VARCHAR(255) NOT NULL DEFAULT 'Green'
)")?;
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);
sourcepub fn values<U>(self, records: U) -> InsertStatement<T, U::Values, Op> where
U: Insertable<T>,
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
sourceimpl<T: Clone, Op: Clone> Clone for IncompleteInsertStatement<T, Op>
impl<T: Clone, Op: Clone> Clone for IncompleteInsertStatement<T, Op>
sourcefn clone(&self) -> IncompleteInsertStatement<T, Op>
fn clone(&self) -> IncompleteInsertStatement<T, Op>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug, Op: Debug> Debug for IncompleteInsertStatement<T, Op>
impl<T: Debug, Op: Debug> Debug for IncompleteInsertStatement<T, Op>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more