pub struct DataQuality {
pub total_records: usize,
pub valid_records: usize,
pub suspect_records: usize,
pub missing_records: usize,
pub complete_records: usize,
}Fields§
§total_records: usize§valid_records: usize§suspect_records: usize§missing_records: usize§complete_records: usizeImplementations§
Source§impl DataQuality
impl DataQuality
pub fn valid_percentage(&self) -> f64
pub fn suspect_percentage(&self) -> f64
pub fn missing_percentage(&self) -> f64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataQuality
impl RefUnwindSafe for DataQuality
impl Send for DataQuality
impl Sync for DataQuality
impl Unpin for DataQuality
impl UnwindSafe for DataQuality
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> 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