#[non_exhaustive]pub struct BooleanColumnStatisticsDataBuilder { /* private fields */ }Expand description
A builder for BooleanColumnStatisticsData.
Implementations§
source§impl BooleanColumnStatisticsDataBuilder
impl BooleanColumnStatisticsDataBuilder
sourcepub fn number_of_trues(self, input: i64) -> Self
pub fn number_of_trues(self, input: i64) -> Self
The number of true values in the column.
This field is required.sourcepub fn set_number_of_trues(self, input: Option<i64>) -> Self
pub fn set_number_of_trues(self, input: Option<i64>) -> Self
The number of true values in the column.
sourcepub fn get_number_of_trues(&self) -> &Option<i64>
pub fn get_number_of_trues(&self) -> &Option<i64>
The number of true values in the column.
sourcepub fn number_of_falses(self, input: i64) -> Self
pub fn number_of_falses(self, input: i64) -> Self
The number of false values in the column.
This field is required.sourcepub fn set_number_of_falses(self, input: Option<i64>) -> Self
pub fn set_number_of_falses(self, input: Option<i64>) -> Self
The number of false values in the column.
sourcepub fn get_number_of_falses(&self) -> &Option<i64>
pub fn get_number_of_falses(&self) -> &Option<i64>
The number of false values 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 build(self) -> BooleanColumnStatisticsData
pub fn build(self) -> BooleanColumnStatisticsData
Consumes the builder and constructs a BooleanColumnStatisticsData.
Trait Implementations§
source§impl Clone for BooleanColumnStatisticsDataBuilder
impl Clone for BooleanColumnStatisticsDataBuilder
source§fn clone(&self) -> BooleanColumnStatisticsDataBuilder
fn clone(&self) -> BooleanColumnStatisticsDataBuilder
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 BooleanColumnStatisticsDataBuilder
impl Default for BooleanColumnStatisticsDataBuilder
source§fn default() -> BooleanColumnStatisticsDataBuilder
fn default() -> BooleanColumnStatisticsDataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BooleanColumnStatisticsDataBuilder
impl PartialEq for BooleanColumnStatisticsDataBuilder
source§fn eq(&self, other: &BooleanColumnStatisticsDataBuilder) -> bool
fn eq(&self, other: &BooleanColumnStatisticsDataBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BooleanColumnStatisticsDataBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BooleanColumnStatisticsDataBuilder
impl Send for BooleanColumnStatisticsDataBuilder
impl Sync for BooleanColumnStatisticsDataBuilder
impl Unpin for BooleanColumnStatisticsDataBuilder
impl UnwindSafe for BooleanColumnStatisticsDataBuilder
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.