pub struct BatchUpdateCommand {
pub entity: String,
pub batch_ids: Vec<Value>,
pub batch_expected_versions: Vec<Option<i64>>,
pub batch_values: Vec<Record>,
pub update_fields: Vec<String>,
pub trace_chains: Vec<Vec<TraceNode>>,
pub batch_old_values: Vec<Option<Record>>,
}Fields§
§entity: String§batch_ids: Vec<Value>§batch_expected_versions: Vec<Option<i64>>§batch_values: Vec<Record>§update_fields: Vec<String>§trace_chains: Vec<Vec<TraceNode>>§batch_old_values: Vec<Option<Record>>Implementations§
Trait Implementations§
Source§impl Clone for BatchUpdateCommand
impl Clone for BatchUpdateCommand
Source§fn clone(&self) -> BatchUpdateCommand
fn clone(&self) -> BatchUpdateCommand
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 BatchUpdateCommand
impl Debug for BatchUpdateCommand
Source§impl PartialEq for BatchUpdateCommand
impl PartialEq for BatchUpdateCommand
Source§fn eq(&self, other: &BatchUpdateCommand) -> bool
fn eq(&self, other: &BatchUpdateCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchUpdateCommand
Auto Trait Implementations§
impl Freeze for BatchUpdateCommand
impl RefUnwindSafe for BatchUpdateCommand
impl Send for BatchUpdateCommand
impl Sync for BatchUpdateCommand
impl Unpin for BatchUpdateCommand
impl UnsafeUnpin for BatchUpdateCommand
impl UnwindSafe for BatchUpdateCommand
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