pub struct Update;Expand description
Defines a structure to perform UPDATE query operations on a ActiveModel
Implementationsยง
Sourceยงimpl Update
impl Update
Sourcepub fn one<E, A>(model: A) -> UpdateOne<A>where
E: EntityTrait,
A: ActiveModelTrait<Entity = E>,
pub fn one<E, A>(model: A) -> UpdateOne<A>where
E: EntityTrait,
A: ActiveModelTrait<Entity = E>,
Update one ActiveModel
use sea_orm::{DbBackend, entity::*, query::*, tests_cfg::cake};
assert_eq!(
Update::one(cake::ActiveModel {
id: ActiveValue::set(1),
name: ActiveValue::set("Apple Pie".to_owned()),
})
.validate()
.unwrap()
.build(DbBackend::Postgres)
.to_string(),
r#"UPDATE "cake" SET "name" = 'Apple Pie' WHERE "cake"."id" = 1"#,
);Sourcepub fn many<E>(entity: E) -> UpdateMany<E>where
E: EntityTrait,
pub fn many<E>(entity: E) -> UpdateMany<E>where
E: EntityTrait,
Update many ActiveModel
use sea_orm::{DbBackend, entity::*, query::*, sea_query::Expr, tests_cfg::fruit};
assert_eq!(
Update::many(fruit::Entity)
.col_expr(fruit::Column::Name, Expr::value("Golden Apple"))
.filter(fruit::Column::Name.contains("Apple"))
.build(DbBackend::Postgres)
.to_string(),
r#"UPDATE "fruit" SET "name" = 'Golden Apple' WHERE "fruit"."name" LIKE '%Apple%'"#,
);Trait Implementationsยง
Auto Trait Implementationsยง
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnwindSafe for Update
Blanket Implementationsยง
ยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
ยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
ยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
ยงunsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit)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