Struct Inserter
pub struct Inserter<A>where
A: ActiveModelTrait,{ /* private fields */ }
Expand description
Defines a structure to perform INSERT operations in an ActiveModel
Implementations§
§impl<A> Inserter<A>where
A: ActiveModelTrait,
impl<A> Inserter<A>where
A: ActiveModelTrait,
pub fn new(
primary_key: Option<ValueTuple>,
query: InsertStatement,
) -> Inserter<A>
pub fn new( primary_key: Option<ValueTuple>, query: InsertStatement, ) -> Inserter<A>
Instantiate a new insert operation
pub fn exec<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<InsertResult<A>, DbErr>> + 'awhere
C: ConnectionTrait,
A: 'a,
pub fn exec<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<InsertResult<A>, DbErr>> + 'awhere
C: ConnectionTrait,
A: 'a,
Execute an insert operation, returning the last inserted id
pub fn exec_without_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<u64, DbErr>> + 'awhere
C: ConnectionTrait,
A: 'a,
pub fn exec_without_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<u64, DbErr>> + 'awhere
C: ConnectionTrait,
A: 'a,
Execute an insert operation
pub fn exec_with_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<<<A as ActiveModelTrait>::Entity as EntityTrait>::Model, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
pub fn exec_with_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<<<A as ActiveModelTrait>::Entity as EntityTrait>::Model, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
Execute an insert operation and return the inserted model (use RETURNING
syntax if supported)
pub fn exec_with_returning_keys<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<Vec<<<<A as ActiveModelTrait>::Entity as EntityTrait>::PrimaryKey as PrimaryKeyTrait>::ValueType>, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
pub fn exec_with_returning_keys<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<Vec<<<<A as ActiveModelTrait>::Entity as EntityTrait>::PrimaryKey as PrimaryKeyTrait>::ValueType>, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
Execute an insert operation and return primary keys of inserted models
§Panics
Panics if the database backend does not support INSERT RETURNING
.
pub fn exec_with_returning_many<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<Vec<<<A as ActiveModelTrait>::Entity as EntityTrait>::Model>, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
pub fn exec_with_returning_many<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<Vec<<<A as ActiveModelTrait>::Entity as EntityTrait>::Model>, DbErr>> + 'awhere
<<A as ActiveModelTrait>::Entity as EntityTrait>::Model: IntoActiveModel<A>,
C: ConnectionTrait,
A: 'a,
Execute an insert operation and return all inserted models
§Panics
Panics if the database backend does not support INSERT RETURNING
.
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for Inserter<A>
impl<A> !RefUnwindSafe for Inserter<A>
impl<A> Send for Inserter<A>where
A: Send,
impl<A> Sync for Inserter<A>where
A: Sync,
impl<A> Unpin for Inserter<A>where
A: Unpin,
impl<A> !UnwindSafe for Inserter<A>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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