pub struct StringColumnStatisticsData {
pub average_length: f64,
pub maximum_length: i64,
pub number_of_distinct_values: i64,
pub number_of_nulls: i64,
}
Expand description
Defines a string column statistics data.
Fields§
§average_length: f64
Average value of the column.
maximum_length: i64
Maximum value of the column.
number_of_distinct_values: i64
Number of distinct values.
number_of_nulls: i64
Number of nulls.
Trait Implementations§
Source§impl Clone for StringColumnStatisticsData
impl Clone for StringColumnStatisticsData
Source§fn clone(&self) -> StringColumnStatisticsData
fn clone(&self) -> StringColumnStatisticsData
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 StringColumnStatisticsData
impl Debug for StringColumnStatisticsData
Source§impl Default for StringColumnStatisticsData
impl Default for StringColumnStatisticsData
Source§fn default() -> StringColumnStatisticsData
fn default() -> StringColumnStatisticsData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StringColumnStatisticsData
impl<'de> Deserialize<'de> for StringColumnStatisticsData
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
impl StructuralPartialEq for StringColumnStatisticsData
Auto Trait Implementations§
impl Freeze for StringColumnStatisticsData
impl RefUnwindSafe for StringColumnStatisticsData
impl Send for StringColumnStatisticsData
impl Sync for StringColumnStatisticsData
impl Unpin for StringColumnStatisticsData
impl UnwindSafe for StringColumnStatisticsData
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