pub struct RemappedRows {
pub corrected: u32,
pub uncorrected: u32,
pub pending: bool,
pub failure_occurred: bool,
}Fields§
§corrected: u32§uncorrected: u32§pending: bool§failure_occurred: boolTrait Implementations§
Source§impl Clone for RemappedRows
impl Clone for RemappedRows
Source§fn clone(&self) -> RemappedRows
fn clone(&self) -> RemappedRows
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 RemappedRows
impl Debug for RemappedRows
Source§impl Hash for RemappedRows
impl Hash for RemappedRows
Source§impl PartialEq for RemappedRows
impl PartialEq for RemappedRows
Source§fn eq(&self, other: &RemappedRows) -> bool
fn eq(&self, other: &RemappedRows) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RemappedRows
impl Eq for RemappedRows
impl StructuralPartialEq for RemappedRows
Auto Trait Implementations§
impl Freeze for RemappedRows
impl RefUnwindSafe for RemappedRows
impl Send for RemappedRows
impl Sync for RemappedRows
impl Unpin for RemappedRows
impl UnsafeUnpin for RemappedRows
impl UnwindSafe for RemappedRows
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