Struct aws_sdk_quicksight::types::PivotTotalOptions
source · #[non_exhaustive]pub struct PivotTotalOptions { /* private fields */ }Expand description
The optional configuration of totals cells in a PivotTableVisual.
Implementations§
source§impl PivotTotalOptions
impl PivotTotalOptions
sourcepub fn totals_visibility(&self) -> Option<&Visibility>
pub fn totals_visibility(&self) -> Option<&Visibility>
The visibility configuration for the total cells.
sourcepub fn placement(&self) -> Option<&TableTotalsPlacement>
pub fn placement(&self) -> Option<&TableTotalsPlacement>
The placement (start, end) for the total cells.
sourcepub fn scroll_status(&self) -> Option<&TableTotalsScrollStatus>
pub fn scroll_status(&self) -> Option<&TableTotalsScrollStatus>
The scroll status (pinned, scrolled) for the total cells.
sourcepub fn custom_label(&self) -> Option<&str>
pub fn custom_label(&self) -> Option<&str>
The custom label string for the total cells.
sourcepub fn total_cell_style(&self) -> Option<&TableCellStyle>
pub fn total_cell_style(&self) -> Option<&TableCellStyle>
The cell styling options for the total cells.
sourcepub fn value_cell_style(&self) -> Option<&TableCellStyle>
pub fn value_cell_style(&self) -> Option<&TableCellStyle>
The cell styling options for the totals of value cells.
sourcepub fn metric_header_cell_style(&self) -> Option<&TableCellStyle>
pub fn metric_header_cell_style(&self) -> Option<&TableCellStyle>
The cell styling options for the total of header cells.
source§impl PivotTotalOptions
impl PivotTotalOptions
sourcepub fn builder() -> PivotTotalOptionsBuilder
pub fn builder() -> PivotTotalOptionsBuilder
Creates a new builder-style object to manufacture PivotTotalOptions.
Trait Implementations§
source§impl Clone for PivotTotalOptions
impl Clone for PivotTotalOptions
source§fn clone(&self) -> PivotTotalOptions
fn clone(&self) -> PivotTotalOptions
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 PivotTotalOptions
impl Debug for PivotTotalOptions
source§impl PartialEq<PivotTotalOptions> for PivotTotalOptions
impl PartialEq<PivotTotalOptions> for PivotTotalOptions
source§fn eq(&self, other: &PivotTotalOptions) -> bool
fn eq(&self, other: &PivotTotalOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PivotTotalOptions
Auto Trait Implementations§
impl RefUnwindSafe for PivotTotalOptions
impl Send for PivotTotalOptions
impl Sync for PivotTotalOptions
impl Unpin for PivotTotalOptions
impl UnwindSafe for PivotTotalOptions
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