#[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 ==.impl StructuralPartialEq for PivotTableAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for PivotTableAggregatedFieldWellsBuilder
impl RefUnwindSafe for PivotTableAggregatedFieldWellsBuilder
impl Send for PivotTableAggregatedFieldWellsBuilder
impl Sync for PivotTableAggregatedFieldWellsBuilder
impl Unpin for PivotTableAggregatedFieldWellsBuilder
impl UnwindSafe for PivotTableAggregatedFieldWellsBuilder
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