Struct aws_sdk_quicksight::types::PivotTableTotalOptions
source · #[non_exhaustive]pub struct PivotTableTotalOptions {
pub row_subtotal_options: Option<SubtotalOptions>,
pub column_subtotal_options: Option<SubtotalOptions>,
pub row_total_options: Option<PivotTotalOptions>,
pub column_total_options: Option<PivotTotalOptions>,
}
Expand description
The total 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.row_subtotal_options: Option<SubtotalOptions>
The row subtotal options.
column_subtotal_options: Option<SubtotalOptions>
The column subtotal options.
row_total_options: Option<PivotTotalOptions>
The row total options.
column_total_options: Option<PivotTotalOptions>
The column total options.
Implementations§
source§impl PivotTableTotalOptions
impl PivotTableTotalOptions
sourcepub fn row_subtotal_options(&self) -> Option<&SubtotalOptions>
pub fn row_subtotal_options(&self) -> Option<&SubtotalOptions>
The row subtotal options.
sourcepub fn column_subtotal_options(&self) -> Option<&SubtotalOptions>
pub fn column_subtotal_options(&self) -> Option<&SubtotalOptions>
The column subtotal options.
sourcepub fn row_total_options(&self) -> Option<&PivotTotalOptions>
pub fn row_total_options(&self) -> Option<&PivotTotalOptions>
The row total options.
sourcepub fn column_total_options(&self) -> Option<&PivotTotalOptions>
pub fn column_total_options(&self) -> Option<&PivotTotalOptions>
The column total options.
source§impl PivotTableTotalOptions
impl PivotTableTotalOptions
sourcepub fn builder() -> PivotTableTotalOptionsBuilder
pub fn builder() -> PivotTableTotalOptionsBuilder
Creates a new builder-style object to manufacture PivotTableTotalOptions
.
Trait Implementations§
source§impl Clone for PivotTableTotalOptions
impl Clone for PivotTableTotalOptions
source§fn clone(&self) -> PivotTableTotalOptions
fn clone(&self) -> PivotTableTotalOptions
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 PivotTableTotalOptions
impl Debug for PivotTableTotalOptions
source§impl PartialEq for PivotTableTotalOptions
impl PartialEq for PivotTableTotalOptions
source§fn eq(&self, other: &PivotTableTotalOptions) -> bool
fn eq(&self, other: &PivotTableTotalOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PivotTableTotalOptions
Auto Trait Implementations§
impl RefUnwindSafe for PivotTableTotalOptions
impl Send for PivotTableTotalOptions
impl Sync for PivotTableTotalOptions
impl Unpin for PivotTableTotalOptions
impl UnwindSafe for PivotTableTotalOptions
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.