#[non_exhaustive]pub struct PivotTableAggregatedFieldWellsBuilder { /* private fields */ }Expand description
A builder for PivotTableAggregatedFieldWells.
Implementations§
source§impl PivotTableAggregatedFieldWellsBuilder
impl PivotTableAggregatedFieldWellsBuilder
sourcepub fn rows(self, input: DimensionField) -> Self
pub fn rows(self, input: DimensionField) -> Self
Appends an item to rows.
To override the contents of this collection use set_rows.
The rows field well for a pivot table. Values are grouped by rows fields.
sourcepub fn set_rows(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_rows(self, input: Option<Vec<DimensionField>>) -> Self
The rows field well for a pivot table. Values are grouped by rows fields.
sourcepub fn get_rows(&self) -> &Option<Vec<DimensionField>>
pub fn get_rows(&self) -> &Option<Vec<DimensionField>>
The rows field well for a pivot table. Values are grouped by rows fields.
sourcepub fn columns(self, input: DimensionField) -> Self
pub fn columns(self, input: DimensionField) -> Self
Appends an item to columns.
To override the contents of this collection use set_columns.
The columns field well for a pivot table. Values are grouped by columns fields.
sourcepub fn set_columns(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_columns(self, input: Option<Vec<DimensionField>>) -> Self
The columns field well for a pivot table. Values are grouped by columns fields.
sourcepub fn get_columns(&self) -> &Option<Vec<DimensionField>>
pub fn get_columns(&self) -> &Option<Vec<DimensionField>>
The columns field well for a pivot table. Values are grouped by columns 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 rows and columns 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 rows and columns 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 rows and columns fields.
sourcepub fn build(self) -> PivotTableAggregatedFieldWells
pub fn build(self) -> PivotTableAggregatedFieldWells
Consumes the builder and constructs a PivotTableAggregatedFieldWells.
Trait Implementations§
source§impl Clone for PivotTableAggregatedFieldWellsBuilder
impl Clone for PivotTableAggregatedFieldWellsBuilder
source§fn clone(&self) -> PivotTableAggregatedFieldWellsBuilder
fn clone(&self) -> PivotTableAggregatedFieldWellsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for PivotTableAggregatedFieldWellsBuilder
impl Default for PivotTableAggregatedFieldWellsBuilder
source§fn default() -> PivotTableAggregatedFieldWellsBuilder
fn default() -> PivotTableAggregatedFieldWellsBuilder
source§impl PartialEq for PivotTableAggregatedFieldWellsBuilder
impl PartialEq for PivotTableAggregatedFieldWellsBuilder
source§fn eq(&self, other: &PivotTableAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &PivotTableAggregatedFieldWellsBuilder) -> bool
self and other values to be equal, and is used
by ==.