#[non_exhaustive]pub struct TableAggregatedFieldWellsBuilder { /* private fields */ }
Expand description
A builder for TableAggregatedFieldWells
.
Implementations§
source§impl TableAggregatedFieldWellsBuilder
impl TableAggregatedFieldWellsBuilder
sourcepub fn group_by(self, input: DimensionField) -> Self
pub fn group_by(self, input: DimensionField) -> Self
Appends an item to group_by
.
To override the contents of this collection use set_group_by
.
The group by field well for a pivot table. Values are grouped by group by fields.
sourcepub fn set_group_by(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_group_by(self, input: Option<Vec<DimensionField>>) -> Self
The group by field well for a pivot table. Values are grouped by group by fields.
sourcepub fn get_group_by(&self) -> &Option<Vec<DimensionField>>
pub fn get_group_by(&self) -> &Option<Vec<DimensionField>>
The group by field well for a pivot table. Values are grouped by group by fields.
sourcepub fn values(self, input: MeasureField) -> Self
pub fn values(self, input: MeasureField) -> Self
Appends an item to values
.
To override the contents of this collection use set_values
.
The values field well for a pivot table. Values are aggregated based on group by fields.
sourcepub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
The values field well for a pivot table. Values are aggregated based on group by fields.
sourcepub fn get_values(&self) -> &Option<Vec<MeasureField>>
pub fn get_values(&self) -> &Option<Vec<MeasureField>>
The values field well for a pivot table. Values are aggregated based on group by fields.
sourcepub fn build(self) -> TableAggregatedFieldWells
pub fn build(self) -> TableAggregatedFieldWells
Consumes the builder and constructs a TableAggregatedFieldWells
.
Trait Implementations§
source§impl Clone for TableAggregatedFieldWellsBuilder
impl Clone for TableAggregatedFieldWellsBuilder
source§fn clone(&self) -> TableAggregatedFieldWellsBuilder
fn clone(&self) -> TableAggregatedFieldWellsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TableAggregatedFieldWellsBuilder
impl Default for TableAggregatedFieldWellsBuilder
source§fn default() -> TableAggregatedFieldWellsBuilder
fn default() -> TableAggregatedFieldWellsBuilder
source§impl PartialEq for TableAggregatedFieldWellsBuilder
impl PartialEq for TableAggregatedFieldWellsBuilder
source§fn eq(&self, other: &TableAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &TableAggregatedFieldWellsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.