pub struct BulkInsertResult {
pub rows_affected: u64,
pub batches_committed: u32,
pub has_errors: bool,
}Expand description
Result of a bulk insert operation.
Fields§
§rows_affected: u64Total number of rows inserted.
batches_committed: u32Number of batches committed.
has_errors: boolWhether any errors were encountered.
Trait Implementations§
Source§impl Clone for BulkInsertResult
impl Clone for BulkInsertResult
Source§fn clone(&self) -> BulkInsertResult
fn clone(&self) -> BulkInsertResult
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 moreAuto Trait Implementations§
impl Freeze for BulkInsertResult
impl RefUnwindSafe for BulkInsertResult
impl Send for BulkInsertResult
impl Sync for BulkInsertResult
impl Unpin for BulkInsertResult
impl UnwindSafe for BulkInsertResult
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