pub struct Inserter<A>where
A: ActiveModelTrait,{ /* private fields */ }Expand description
Defines a structure to perform INSERT operations in an ActiveModel
Implementationsยง
Sourceยงimpl<A> Inserter<A>where
A: ActiveModelTrait,
impl<A> Inserter<A>where
A: ActiveModelTrait,
Sourcepub fn new(primary_key: Option<ValueTuple>, query: InsertStatement) -> Self
pub fn new(primary_key: Option<ValueTuple>, query: InsertStatement) -> Self
Instantiate a new insert operation
Sourcepub fn exec<'a, C>(self, db: &'a C) -> Result<InsertResult<A>, DbErr>where
C: ConnectionTrait,
A: 'a,
pub fn exec<'a, C>(self, db: &'a C) -> Result<InsertResult<A>, DbErr>where
C: ConnectionTrait,
A: 'a,
Execute an insert operation, returning the last inserted id
Sourcepub fn exec_without_returning<'a, C>(self, db: &'a C) -> Result<u64, DbErr>where
C: ConnectionTrait,
A: 'a,
pub fn exec_without_returning<'a, C>(self, db: &'a C) -> Result<u64, DbErr>where
C: ConnectionTrait,
A: 'a,
Execute an insert operation
Sourcepub fn exec_with_returning<'a, C>(
self,
db: &'a C,
) -> Result<<A::Entity as EntityTrait>::Model, DbErr>
pub fn exec_with_returning<'a, C>( self, db: &'a C, ) -> Result<<A::Entity as EntityTrait>::Model, DbErr>
Execute an insert operation and return the inserted model (use RETURNING syntax if supported)
Sourcepub fn exec_with_returning_keys<'a, C>(
self,
db: &'a C,
) -> Result<Vec<<<<A as ActiveModelTrait>::Entity as EntityTrait>::PrimaryKey as PrimaryKeyTrait>::ValueType>, DbErr>
pub fn exec_with_returning_keys<'a, C>( self, db: &'a C, ) -> Result<Vec<<<<A as ActiveModelTrait>::Entity as EntityTrait>::PrimaryKey as PrimaryKeyTrait>::ValueType>, DbErr>
Execute an insert operation and return primary keys of inserted models
Sourcepub fn exec_with_returning_many<'a, C>(
self,
db: &'a C,
) -> Result<Vec<<A::Entity as EntityTrait>::Model>, DbErr>
pub fn exec_with_returning_many<'a, C>( self, db: &'a C, ) -> Result<Vec<<A::Entity as EntityTrait>::Model>, DbErr>
Execute an insert operation and return all inserted models
Trait Implementationsยง
Auto Trait Implementationsยง
impl<A> Freeze for Inserter<A>
impl<A> RefUnwindSafe for Inserter<A>where
A: RefUnwindSafe,
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>where
A: UnwindSafe,
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
Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยง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