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,
) -> impl Future<Output = Result<InsertResult<A>, DbErr>> + '_where
C: ConnectionTrait,
A: 'a,
pub fn exec<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = 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,
) -> impl Future<Output = Result<u64, DbErr>> + '_where
C: ConnectionTrait,
A: 'a,
pub fn exec_without_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<u64, DbErr>> + '_where
C: ConnectionTrait,
A: 'a,
Execute an insert operation
sourcepub fn exec_with_returning<'a, C>(
self,
db: &'a C,
) -> impl Future<Output = Result<<A::Entity as EntityTrait>::Model, DbErr>> + '_
pub fn exec_with_returning<'a, C>( self, db: &'a C, ) -> impl Future<Output = Result<<A::Entity as EntityTrait>::Model, DbErr>> + '_
Execute an insert operation and return the inserted model (use RETURNING syntax if supported)
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
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