#[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 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 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
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 TableAggregatedFieldWellsBuilder
impl Default for TableAggregatedFieldWellsBuilder
source§fn default() -> TableAggregatedFieldWellsBuilder
fn default() -> TableAggregatedFieldWellsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TableAggregatedFieldWellsBuilder> for TableAggregatedFieldWellsBuilder
impl PartialEq<TableAggregatedFieldWellsBuilder> for TableAggregatedFieldWellsBuilder
source§fn eq(&self, other: &TableAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &TableAggregatedFieldWellsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for TableAggregatedFieldWellsBuilder
impl Send for TableAggregatedFieldWellsBuilder
impl Sync for TableAggregatedFieldWellsBuilder
impl Unpin for TableAggregatedFieldWellsBuilder
impl UnwindSafe for TableAggregatedFieldWellsBuilder
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