#[non_exhaustive]pub struct PivotTableAggregatedFieldWells { /* private fields */ }Expand description
The aggregated field well for the pivot table.
Implementations§
source§impl PivotTableAggregatedFieldWells
impl PivotTableAggregatedFieldWells
sourcepub fn rows(&self) -> Option<&[DimensionField]>
pub fn rows(&self) -> Option<&[DimensionField]>
The rows field well for a pivot table. Values are grouped by rows fields.
sourcepub fn columns(&self) -> Option<&[DimensionField]>
pub fn columns(&self) -> Option<&[DimensionField]>
The columns field well for a pivot table. Values are grouped by columns fields.
sourcepub fn values(&self) -> Option<&[MeasureField]>
pub fn values(&self) -> Option<&[MeasureField]>
The values field well for a pivot table. Values are aggregated based on rows and columns fields.
source§impl PivotTableAggregatedFieldWells
impl PivotTableAggregatedFieldWells
sourcepub fn builder() -> PivotTableAggregatedFieldWellsBuilder
pub fn builder() -> PivotTableAggregatedFieldWellsBuilder
Creates a new builder-style object to manufacture PivotTableAggregatedFieldWells.
Trait Implementations§
source§impl Clone for PivotTableAggregatedFieldWells
impl Clone for PivotTableAggregatedFieldWells
source§fn clone(&self) -> PivotTableAggregatedFieldWells
fn clone(&self) -> PivotTableAggregatedFieldWells
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 PartialEq<PivotTableAggregatedFieldWells> for PivotTableAggregatedFieldWells
impl PartialEq<PivotTableAggregatedFieldWells> for PivotTableAggregatedFieldWells
source§fn eq(&self, other: &PivotTableAggregatedFieldWells) -> bool
fn eq(&self, other: &PivotTableAggregatedFieldWells) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTableAggregatedFieldWells
Auto Trait Implementations§
impl RefUnwindSafe for PivotTableAggregatedFieldWells
impl Send for PivotTableAggregatedFieldWells
impl Sync for PivotTableAggregatedFieldWells
impl Unpin for PivotTableAggregatedFieldWells
impl UnwindSafe for PivotTableAggregatedFieldWells
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