Struct aws_sdk_quicksight::types::PivotTableFieldOptions
source · #[non_exhaustive]pub struct PivotTableFieldOptions {
pub selected_field_options: Option<Vec<PivotTableFieldOption>>,
pub data_path_options: Option<Vec<PivotTableDataPathOption>>,
pub collapse_state_options: Option<Vec<PivotTableFieldCollapseStateOption>>,
}Expand description
The field options for a pivot table visual.
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.selected_field_options: Option<Vec<PivotTableFieldOption>>The selected field options for the pivot table field options.
data_path_options: Option<Vec<PivotTableDataPathOption>>The data path options for the pivot table field options.
collapse_state_options: Option<Vec<PivotTableFieldCollapseStateOption>>The collapse state options for the pivot table field options.
Implementations§
source§impl PivotTableFieldOptions
impl PivotTableFieldOptions
sourcepub fn selected_field_options(&self) -> Option<&[PivotTableFieldOption]>
pub fn selected_field_options(&self) -> Option<&[PivotTableFieldOption]>
The selected field options for the pivot table field options.
sourcepub fn data_path_options(&self) -> Option<&[PivotTableDataPathOption]>
pub fn data_path_options(&self) -> Option<&[PivotTableDataPathOption]>
The data path options for the pivot table field options.
sourcepub fn collapse_state_options(
&self
) -> Option<&[PivotTableFieldCollapseStateOption]>
pub fn collapse_state_options( &self ) -> Option<&[PivotTableFieldCollapseStateOption]>
The collapse state options for the pivot table field options.
source§impl PivotTableFieldOptions
impl PivotTableFieldOptions
sourcepub fn builder() -> PivotTableFieldOptionsBuilder
pub fn builder() -> PivotTableFieldOptionsBuilder
Creates a new builder-style object to manufacture PivotTableFieldOptions.
Trait Implementations§
source§impl Clone for PivotTableFieldOptions
impl Clone for PivotTableFieldOptions
source§fn clone(&self) -> PivotTableFieldOptions
fn clone(&self) -> PivotTableFieldOptions
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 PivotTableFieldOptions
impl Debug for PivotTableFieldOptions
source§impl PartialEq<PivotTableFieldOptions> for PivotTableFieldOptions
impl PartialEq<PivotTableFieldOptions> for PivotTableFieldOptions
source§fn eq(&self, other: &PivotTableFieldOptions) -> bool
fn eq(&self, other: &PivotTableFieldOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTableFieldOptions
Auto Trait Implementations§
impl RefUnwindSafe for PivotTableFieldOptions
impl Send for PivotTableFieldOptions
impl Sync for PivotTableFieldOptions
impl Unpin for PivotTableFieldOptions
impl UnwindSafe for PivotTableFieldOptions
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