Struct aws_sdk_quicksight::types::PivotTableFieldWells  
source · #[non_exhaustive]pub struct PivotTableFieldWells {
    pub pivot_table_aggregated_field_wells: Option<PivotTableAggregatedFieldWells>,
}Expand description
The field wells for a pivot table visual.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.pivot_table_aggregated_field_wells: Option<PivotTableAggregatedFieldWells>The aggregated field well for the pivot table.
Implementations§
source§impl PivotTableFieldWells
 
impl PivotTableFieldWells
sourcepub fn pivot_table_aggregated_field_wells(
    &self
) -> Option<&PivotTableAggregatedFieldWells>
 
pub fn pivot_table_aggregated_field_wells( &self ) -> Option<&PivotTableAggregatedFieldWells>
The aggregated field well for the pivot table.
source§impl PivotTableFieldWells
 
impl PivotTableFieldWells
sourcepub fn builder() -> PivotTableFieldWellsBuilder
 
pub fn builder() -> PivotTableFieldWellsBuilder
Creates a new builder-style object to manufacture PivotTableFieldWells.
Trait Implementations§
source§impl Clone for PivotTableFieldWells
 
impl Clone for PivotTableFieldWells
source§fn clone(&self) -> PivotTableFieldWells
 
fn clone(&self) -> PivotTableFieldWells
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 Debug for PivotTableFieldWells
 
impl Debug for PivotTableFieldWells
source§impl PartialEq for PivotTableFieldWells
 
impl PartialEq for PivotTableFieldWells
source§fn eq(&self, other: &PivotTableFieldWells) -> bool
 
fn eq(&self, other: &PivotTableFieldWells) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTableFieldWells
Auto Trait Implementations§
impl Freeze for PivotTableFieldWells
impl RefUnwindSafe for PivotTableFieldWells
impl Send for PivotTableFieldWells
impl Sync for PivotTableFieldWells
impl Unpin for PivotTableFieldWells
impl UnwindSafe for PivotTableFieldWells
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
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>
Creates a shared type from an unshared type.