pub struct UpdateBatch { /* private fields */ }Expand description
A batch of update operations.
Implementations§
Source§impl UpdateBatch
impl UpdateBatch
Source§impl UpdateBatch
impl UpdateBatch
Sourcepub fn insert_count(&self) -> usize
pub fn insert_count(&self) -> usize
Count inserts in batch.
Sourcepub fn delete_count(&self) -> usize
pub fn delete_count(&self) -> usize
Count deletes in batch.
Sourcepub fn update_count(&self) -> usize
pub fn update_count(&self) -> usize
Count updates in batch.
Trait Implementations§
Source§impl Clone for UpdateBatch
impl Clone for UpdateBatch
Source§fn clone(&self) -> UpdateBatch
fn clone(&self) -> UpdateBatch
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateBatch
impl Debug for UpdateBatch
Source§impl Default for UpdateBatch
impl Default for UpdateBatch
Source§fn default() -> UpdateBatch
fn default() -> UpdateBatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateBatch
impl RefUnwindSafe for UpdateBatch
impl Send for UpdateBatch
impl Sync for UpdateBatch
impl Unpin for UpdateBatch
impl UnsafeUnpin for UpdateBatch
impl UnwindSafe for UpdateBatch
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