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