pub struct ColumnStatsRow {
pub column_name: String,
pub distinct_count: i64,
pub null_count: i64,
pub min_value: Option<String>,
pub max_value: Option<String>,
pub row_count: i64,
pub histogram_json: String,
pub mcv_values_json: String,
pub mcv_frequencies_json: String,
}Expand description
One row from persisted column statistics.
Fields§
§column_name: String§distinct_count: i64§null_count: i64§min_value: Option<String>§max_value: Option<String>§row_count: i64§histogram_json: String§mcv_values_json: String§mcv_frequencies_json: StringTrait Implementations§
Source§impl Clone for ColumnStatsRow
impl Clone for ColumnStatsRow
Source§fn clone(&self) -> ColumnStatsRow
fn clone(&self) -> ColumnStatsRow
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 ColumnStatsRow
impl Debug for ColumnStatsRow
Source§impl PartialEq for ColumnStatsRow
impl PartialEq for ColumnStatsRow
impl StructuralPartialEq for ColumnStatsRow
Auto Trait Implementations§
impl Freeze for ColumnStatsRow
impl RefUnwindSafe for ColumnStatsRow
impl Send for ColumnStatsRow
impl Sync for ColumnStatsRow
impl Unpin for ColumnStatsRow
impl UnsafeUnpin for ColumnStatsRow
impl UnwindSafe for ColumnStatsRow
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