Struct Insert

Source
pub struct Insert<'q, DB, T, DT>
where T: ModelTableName, DB: Database, DT: InsertData<'q, DB>,
{ pub val: Vec<DT>, pub fields: TableFields, /* private fields */ }

Fields§

§val: Vec<DT>§fields: TableFields

Implementations§

Source§

impl<'q, DB, T, DT> Insert<'q, DB, T, DT>
where T: ModelTableName, DT: InsertData<'q, DB>, DB: Database,

Source

pub fn new(val: DT) -> Self

Source

pub fn new_vec(val: Vec<DT>) -> Self

Source

pub fn model<'t: 'q, MI>(val: &'t MI) -> Self
where MI: ModelInsertData<'q, DB, DT>,

Source

pub fn model_vec<'t: 'q, MI>(val: &'t Vec<MI>) -> Self
where MI: ModelInsertData<'q, DB, DT>,

Source

pub fn sql_param(&self) -> Vec<String>

Source

pub fn sql_values(&self) -> Vec<String>

Source

pub fn bind_values<'t>( &'t self, res: Query<'t, DB, <DB as HasArguments<'t>>::Arguments>, ) -> Query<'t, DB, <DB as HasArguments<'t>>::Arguments>

Source

pub async fn execute_return<'c, E>( self, executor: E, filed: &str, ) -> Result<<DB as Database>::Row, Error>
where for<'n> <DB as HasArguments<'n>>::Arguments: Arguments<'n> + IntoArguments<'n, DB>, E: Executor<'c, Database = DB>,

Source

pub async fn execute<'c, E>( self, executor: E, ) -> Result<<DB as Database>::QueryResult, Error>
where for<'n> <DB as HasArguments<'n>>::Arguments: Arguments<'n> + IntoArguments<'n, DB>, E: Executor<'c, Database = DB>,

Source

pub async fn execute_update<'c, 't, CT, IT, E>( self, update: &Update<'t, DB, IT, CT>, executor: E, ) -> Result<<DB as Database>::QueryResult, Error>
where IT: ModelUpdateData<'t, DB, CT>, CT: UpdateData<'t, DB>, for<'n> <DB as HasArguments<'n>>::Arguments: Arguments<'n> + IntoArguments<'n, DB>, E: Executor<'c, Database = DB>,

Auto Trait Implementations§

§

impl<'q, DB, T, DT> Freeze for Insert<'q, DB, T, DT>

§

impl<'q, DB, T, DT> RefUnwindSafe for Insert<'q, DB, T, DT>

§

impl<'q, DB, T, DT> Send for Insert<'q, DB, T, DT>
where T: Send, DT: Send + Sync,

§

impl<'q, DB, T, DT> Sync for Insert<'q, DB, T, DT>
where T: Sync, DB: Sync, DT: Sync,

§

impl<'q, DB, T, DT> Unpin for Insert<'q, DB, T, DT>
where T: Unpin, DB: Unpin, DT: Unpin,

§

impl<'q, DB, T, DT> UnwindSafe for Insert<'q, DB, T, DT>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T