pub struct UpdateMany {
pub model: String,
pub where_clauses: Vec<Where>,
pub data: DbRecord,
}Expand description
Multi-row update query contract for adapters.
Fields§
§model: String§where_clauses: Vec<Where>§data: DbRecordImplementations§
Trait Implementations§
Source§impl Clone for UpdateMany
impl Clone for UpdateMany
Source§fn clone(&self) -> UpdateMany
fn clone(&self) -> UpdateMany
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 UpdateMany
impl Debug for UpdateMany
Source§impl<'de> Deserialize<'de> for UpdateMany
impl<'de> Deserialize<'de> for UpdateMany
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpdateMany
impl PartialEq for UpdateMany
Source§fn eq(&self, other: &UpdateMany) -> bool
fn eq(&self, other: &UpdateMany) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateMany
impl Serialize for UpdateMany
impl StructuralPartialEq for UpdateMany
Auto Trait Implementations§
impl Freeze for UpdateMany
impl RefUnwindSafe for UpdateMany
impl Send for UpdateMany
impl Sync for UpdateMany
impl Unpin for UpdateMany
impl UnsafeUnpin for UpdateMany
impl UnwindSafe for UpdateMany
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