#[non_exhaustive]pub struct DoubleColumnStatisticsDataBuilder { /* private fields */ }Expand description
A builder for DoubleColumnStatisticsData.
Implementations§
source§impl DoubleColumnStatisticsDataBuilder
impl DoubleColumnStatisticsDataBuilder
sourcepub fn minimum_value(self, input: f64) -> Self
pub fn minimum_value(self, input: f64) -> Self
The lowest value in the column.
sourcepub fn set_minimum_value(self, input: Option<f64>) -> Self
pub fn set_minimum_value(self, input: Option<f64>) -> Self
The lowest value in the column.
sourcepub fn get_minimum_value(&self) -> &Option<f64>
pub fn get_minimum_value(&self) -> &Option<f64>
The lowest value in the column.
sourcepub fn maximum_value(self, input: f64) -> Self
pub fn maximum_value(self, input: f64) -> Self
The highest value in the column.
sourcepub fn set_maximum_value(self, input: Option<f64>) -> Self
pub fn set_maximum_value(self, input: Option<f64>) -> Self
The highest value in the column.
sourcepub fn get_maximum_value(&self) -> &Option<f64>
pub fn get_maximum_value(&self) -> &Option<f64>
The highest value in the column.
sourcepub fn number_of_nulls(self, input: i64) -> Self
pub fn number_of_nulls(self, input: i64) -> Self
The number of null values in the column.
This field is required.sourcepub fn set_number_of_nulls(self, input: Option<i64>) -> Self
pub fn set_number_of_nulls(self, input: Option<i64>) -> Self
The number of null values in the column.
sourcepub fn get_number_of_nulls(&self) -> &Option<i64>
pub fn get_number_of_nulls(&self) -> &Option<i64>
The number of null values in the column.
sourcepub fn number_of_distinct_values(self, input: i64) -> Self
pub fn number_of_distinct_values(self, input: i64) -> Self
The number of distinct values in a column.
This field is required.sourcepub fn set_number_of_distinct_values(self, input: Option<i64>) -> Self
pub fn set_number_of_distinct_values(self, input: Option<i64>) -> Self
The number of distinct values in a column.
sourcepub fn get_number_of_distinct_values(&self) -> &Option<i64>
pub fn get_number_of_distinct_values(&self) -> &Option<i64>
The number of distinct values in a column.
sourcepub fn build(self) -> DoubleColumnStatisticsData
pub fn build(self) -> DoubleColumnStatisticsData
Consumes the builder and constructs a DoubleColumnStatisticsData.
Trait Implementations§
source§impl Clone for DoubleColumnStatisticsDataBuilder
impl Clone for DoubleColumnStatisticsDataBuilder
source§fn clone(&self) -> DoubleColumnStatisticsDataBuilder
fn clone(&self) -> DoubleColumnStatisticsDataBuilder
Returns a copy 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 Default for DoubleColumnStatisticsDataBuilder
impl Default for DoubleColumnStatisticsDataBuilder
source§fn default() -> DoubleColumnStatisticsDataBuilder
fn default() -> DoubleColumnStatisticsDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DoubleColumnStatisticsDataBuilder
impl PartialEq for DoubleColumnStatisticsDataBuilder
source§fn eq(&self, other: &DoubleColumnStatisticsDataBuilder) -> bool
fn eq(&self, other: &DoubleColumnStatisticsDataBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DoubleColumnStatisticsDataBuilder
Auto Trait Implementations§
impl Freeze for DoubleColumnStatisticsDataBuilder
impl RefUnwindSafe for DoubleColumnStatisticsDataBuilder
impl Send for DoubleColumnStatisticsDataBuilder
impl Sync for DoubleColumnStatisticsDataBuilder
impl Unpin for DoubleColumnStatisticsDataBuilder
impl UnwindSafe for DoubleColumnStatisticsDataBuilder
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.