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
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) -> &[PivotTableFieldOption]
pub fn selected_field_options(&self) -> &[PivotTableFieldOption]
The selected field options for the pivot table field options.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .selected_field_options.is_none()
.
sourcepub fn data_path_options(&self) -> &[PivotTableDataPathOption]
pub fn data_path_options(&self) -> &[PivotTableDataPathOption]
The data path options for the pivot table field options.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_path_options.is_none()
.
sourcepub fn collapse_state_options(&self) -> &[PivotTableFieldCollapseStateOption]
pub fn collapse_state_options(&self) -> &[PivotTableFieldCollapseStateOption]
The collapse state options for the pivot table field options.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .collapse_state_options.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PivotTableFieldOptions
impl Debug for PivotTableFieldOptions
source§impl PartialEq for PivotTableFieldOptions
impl PartialEq for PivotTableFieldOptions
source§fn eq(&self, other: &PivotTableFieldOptions) -> bool
fn eq(&self, other: &PivotTableFieldOptions) -> bool
self
and other
values to be equal, and is used
by ==
.