#[non_exhaustive]pub struct DateColumnStatisticsDataBuilder { /* private fields */ }Expand description
A builder for DateColumnStatisticsData.
Implementations§
source§impl DateColumnStatisticsDataBuilder
impl DateColumnStatisticsDataBuilder
sourcepub fn minimum_value(self, input: DateTime) -> Self
pub fn minimum_value(self, input: DateTime) -> Self
The lowest value in the column.
sourcepub fn set_minimum_value(self, input: Option<DateTime>) -> Self
pub fn set_minimum_value(self, input: Option<DateTime>) -> Self
The lowest value in the column.
sourcepub fn get_minimum_value(&self) -> &Option<DateTime>
pub fn get_minimum_value(&self) -> &Option<DateTime>
The lowest value in the column.
sourcepub fn maximum_value(self, input: DateTime) -> Self
pub fn maximum_value(self, input: DateTime) -> Self
The highest value in the column.
sourcepub fn set_maximum_value(self, input: Option<DateTime>) -> Self
pub fn set_maximum_value(self, input: Option<DateTime>) -> Self
The highest value in the column.
sourcepub fn get_maximum_value(&self) -> &Option<DateTime>
pub fn get_maximum_value(&self) -> &Option<DateTime>
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) -> DateColumnStatisticsData
pub fn build(self) -> DateColumnStatisticsData
Consumes the builder and constructs a DateColumnStatisticsData.
Trait Implementations§
source§impl Clone for DateColumnStatisticsDataBuilder
impl Clone for DateColumnStatisticsDataBuilder
source§fn clone(&self) -> DateColumnStatisticsDataBuilder
fn clone(&self) -> DateColumnStatisticsDataBuilder
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 DateColumnStatisticsDataBuilder
impl Default for DateColumnStatisticsDataBuilder
source§fn default() -> DateColumnStatisticsDataBuilder
fn default() -> DateColumnStatisticsDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DateColumnStatisticsDataBuilder
impl PartialEq for DateColumnStatisticsDataBuilder
source§fn eq(&self, other: &DateColumnStatisticsDataBuilder) -> bool
fn eq(&self, other: &DateColumnStatisticsDataBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DateColumnStatisticsDataBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DateColumnStatisticsDataBuilder
impl Send for DateColumnStatisticsDataBuilder
impl Sync for DateColumnStatisticsDataBuilder
impl Unpin for DateColumnStatisticsDataBuilder
impl UnwindSafe for DateColumnStatisticsDataBuilder
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>
Creates a shared type from an unshared type.