#[non_exhaustive]pub struct ColumnStatisticsConfigurationBuilder { /* private fields */ }
Expand description
A builder for ColumnStatisticsConfiguration
.
Implementations§
source§impl ColumnStatisticsConfigurationBuilder
impl ColumnStatisticsConfigurationBuilder
sourcepub fn selectors(self, input: ColumnSelector) -> Self
pub fn selectors(self, input: ColumnSelector) -> Self
Appends an item to selectors
.
To override the contents of this collection use set_selectors
.
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
sourcepub fn set_selectors(self, input: Option<Vec<ColumnSelector>>) -> Self
pub fn set_selectors(self, input: Option<Vec<ColumnSelector>>) -> Self
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
sourcepub fn get_selectors(&self) -> &Option<Vec<ColumnSelector>>
pub fn get_selectors(&self) -> &Option<Vec<ColumnSelector>>
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
sourcepub fn statistics(self, input: StatisticsConfiguration) -> Self
pub fn statistics(self, input: StatisticsConfiguration) -> Self
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
This field is required.sourcepub fn set_statistics(self, input: Option<StatisticsConfiguration>) -> Self
pub fn set_statistics(self, input: Option<StatisticsConfiguration>) -> Self
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
sourcepub fn get_statistics(&self) -> &Option<StatisticsConfiguration>
pub fn get_statistics(&self) -> &Option<StatisticsConfiguration>
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
sourcepub fn build(self) -> ColumnStatisticsConfiguration
pub fn build(self) -> ColumnStatisticsConfiguration
Consumes the builder and constructs a ColumnStatisticsConfiguration
.
Trait Implementations§
source§impl Clone for ColumnStatisticsConfigurationBuilder
impl Clone for ColumnStatisticsConfigurationBuilder
source§fn clone(&self) -> ColumnStatisticsConfigurationBuilder
fn clone(&self) -> ColumnStatisticsConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ColumnStatisticsConfigurationBuilder
impl Default for ColumnStatisticsConfigurationBuilder
source§fn default() -> ColumnStatisticsConfigurationBuilder
fn default() -> ColumnStatisticsConfigurationBuilder
source§impl PartialEq for ColumnStatisticsConfigurationBuilder
impl PartialEq for ColumnStatisticsConfigurationBuilder
source§fn eq(&self, other: &ColumnStatisticsConfigurationBuilder) -> bool
fn eq(&self, other: &ColumnStatisticsConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ColumnStatisticsConfigurationBuilder
Auto Trait Implementations§
impl Freeze for ColumnStatisticsConfigurationBuilder
impl RefUnwindSafe for ColumnStatisticsConfigurationBuilder
impl Send for ColumnStatisticsConfigurationBuilder
impl Sync for ColumnStatisticsConfigurationBuilder
impl Unpin for ColumnStatisticsConfigurationBuilder
impl UnwindSafe for ColumnStatisticsConfigurationBuilder
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
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>
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>
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 more