pub struct RejectedRow {
pub row_index: u64,
pub error: String,
}Expand description
A single row rejected during a WriteOptions::isolate_failures
probe. row_index is the 0-based index within the whole write.
Fields§
§row_index: u64§error: StringTrait Implementations§
Source§impl Clone for RejectedRow
impl Clone for RejectedRow
Source§fn clone(&self) -> RejectedRow
fn clone(&self) -> RejectedRow
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 moreAuto Trait Implementations§
impl Freeze for RejectedRow
impl RefUnwindSafe for RejectedRow
impl Send for RejectedRow
impl Sync for RejectedRow
impl Unpin for RejectedRow
impl UnsafeUnpin for RejectedRow
impl UnwindSafe for RejectedRow
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