#[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 ==.impl StructuralPartialEq for TableAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for TableAggregatedFieldWellsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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