pub struct QualityLabelSummary {
pub total_labels: usize,
pub missing_values: usize,
pub typos: usize,
pub format_variations: usize,
pub duplicates: usize,
pub encoding_issues: usize,
pub unique_documents: usize,
pub unique_fields: usize,
}Expand description
Summary statistics for quality labels.
Fields§
§total_labels: usizeTotal number of labels
missing_values: usizeNumber of missing value issues
typos: usizeNumber of typo issues
format_variations: usizeNumber of format variation issues
duplicates: usizeNumber of duplicate issues
encoding_issues: usizeNumber of encoding issues
unique_documents: usizeNumber of unique documents affected
unique_fields: usizeNumber of unique fields affected
Trait Implementations§
Source§impl Clone for QualityLabelSummary
impl Clone for QualityLabelSummary
Source§fn clone(&self) -> QualityLabelSummary
fn clone(&self) -> QualityLabelSummary
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 moreSource§impl Debug for QualityLabelSummary
impl Debug for QualityLabelSummary
Source§impl Default for QualityLabelSummary
impl Default for QualityLabelSummary
Source§fn default() -> QualityLabelSummary
fn default() -> QualityLabelSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QualityLabelSummary
impl<'de> Deserialize<'de> for QualityLabelSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QualityLabelSummary
impl RefUnwindSafe for QualityLabelSummary
impl Send for QualityLabelSummary
impl Sync for QualityLabelSummary
impl Unpin for QualityLabelSummary
impl UnwindSafe for QualityLabelSummary
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