pub struct EnhancedDataQuality {Show 13 fields
pub ecad_valid: usize,
pub ecad_suspect: usize,
pub ecad_missing: usize,
pub physically_valid: usize,
pub physically_suspect: usize,
pub physically_invalid: usize,
pub combined_valid: usize,
pub combined_suspect_original: usize,
pub combined_suspect_range: usize,
pub combined_suspect_both: usize,
pub combined_invalid: usize,
pub combined_missing: usize,
pub validation_errors: usize,
}Fields§
§ecad_valid: usize§ecad_suspect: usize§ecad_missing: usize§physically_valid: usize§physically_suspect: usize§physically_invalid: usize§combined_valid: usize§combined_suspect_original: usize§combined_suspect_range: usize§combined_suspect_both: usize§combined_invalid: usize§combined_missing: usize§validation_errors: usizeTrait Implementations§
Source§impl Clone for EnhancedDataQuality
impl Clone for EnhancedDataQuality
Source§fn clone(&self) -> EnhancedDataQuality
fn clone(&self) -> EnhancedDataQuality
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 EnhancedDataQuality
impl RefUnwindSafe for EnhancedDataQuality
impl Send for EnhancedDataQuality
impl Sync for EnhancedDataQuality
impl Unpin for EnhancedDataQuality
impl UnwindSafe for EnhancedDataQuality
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more