pub struct UpdateQuery {
pub table: TableRef,
pub changes: Vec<ColumnValue>,
pub predicate: Option<Predicate>,
}Fields§
§table: TableRef§changes: Vec<ColumnValue>§predicate: Option<Predicate>Implementations§
Trait Implementations§
Source§impl Clone for UpdateQuery
impl Clone for UpdateQuery
Source§fn clone(&self) -> UpdateQuery
fn clone(&self) -> UpdateQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateQuery
impl Debug for UpdateQuery
Source§impl PartialEq for UpdateQuery
impl PartialEq for UpdateQuery
Source§fn eq(&self, other: &UpdateQuery) -> bool
fn eq(&self, other: &UpdateQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateQuery
Auto Trait Implementations§
impl Freeze for UpdateQuery
impl RefUnwindSafe for UpdateQuery
impl Send for UpdateQuery
impl Sync for UpdateQuery
impl Unpin for UpdateQuery
impl UnsafeUnpin for UpdateQuery
impl UnwindSafe for UpdateQuery
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