Struct Updater
pub struct Updater { /* private fields */ }
Expand description
Defines an update operation
Implementations§
§impl Updater
impl Updater
pub fn new(query: UpdateStatement) -> Updater
pub fn new(query: UpdateStatement) -> Updater
Instantiate an update using an UpdateStatement
pub fn check_record_exists(self) -> Updater
pub fn check_record_exists(self) -> Updater
Check if a record exists on the ActiveModel to perform the update operation on
pub async fn exec<C>(self, db: &C) -> Result<UpdateResult, DbErr>where
C: ConnectionTrait,
pub async fn exec<C>(self, db: &C) -> Result<UpdateResult, DbErr>where
C: ConnectionTrait,
Execute an update operation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Updater
impl !RefUnwindSafe for Updater
impl Send for Updater
impl Sync for Updater
impl Unpin for Updater
impl !UnwindSafe for Updater
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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