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
impl StructuralPartialEq for PivotTableFieldOptions
Auto Trait Implementations§
impl Freeze for PivotTableFieldOptions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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