Struct aws_sdk_quicksight::types::builders::TotalOptionsBuilder
source · #[non_exhaustive]pub struct TotalOptionsBuilder { /* private fields */ }Expand description
A builder for TotalOptions.
Implementations§
source§impl TotalOptionsBuilder
impl TotalOptionsBuilder
sourcepub fn totals_visibility(self, input: Visibility) -> Self
pub fn totals_visibility(self, input: Visibility) -> Self
The visibility configuration for the total cells.
sourcepub fn set_totals_visibility(self, input: Option<Visibility>) -> Self
pub fn set_totals_visibility(self, input: Option<Visibility>) -> Self
The visibility configuration for the total cells.
sourcepub fn get_totals_visibility(&self) -> &Option<Visibility>
pub fn get_totals_visibility(&self) -> &Option<Visibility>
The visibility configuration for the total cells.
sourcepub fn placement(self, input: TableTotalsPlacement) -> Self
pub fn placement(self, input: TableTotalsPlacement) -> Self
The placement (start, end) for the total cells.
sourcepub fn set_placement(self, input: Option<TableTotalsPlacement>) -> Self
pub fn set_placement(self, input: Option<TableTotalsPlacement>) -> Self
The placement (start, end) for the total cells.
sourcepub fn get_placement(&self) -> &Option<TableTotalsPlacement>
pub fn get_placement(&self) -> &Option<TableTotalsPlacement>
The placement (start, end) for the total cells.
sourcepub fn scroll_status(self, input: TableTotalsScrollStatus) -> Self
pub fn scroll_status(self, input: TableTotalsScrollStatus) -> Self
The scroll status (pinned, scrolled) for the total cells.
sourcepub fn set_scroll_status(self, input: Option<TableTotalsScrollStatus>) -> Self
pub fn set_scroll_status(self, input: Option<TableTotalsScrollStatus>) -> Self
The scroll status (pinned, scrolled) for the total cells.
sourcepub fn get_scroll_status(&self) -> &Option<TableTotalsScrollStatus>
pub fn get_scroll_status(&self) -> &Option<TableTotalsScrollStatus>
The scroll status (pinned, scrolled) for the total cells.
sourcepub fn custom_label(self, input: impl Into<String>) -> Self
pub fn custom_label(self, input: impl Into<String>) -> Self
The custom label string for the total cells.
sourcepub fn set_custom_label(self, input: Option<String>) -> Self
pub fn set_custom_label(self, input: Option<String>) -> Self
The custom label string for the total cells.
sourcepub fn get_custom_label(&self) -> &Option<String>
pub fn get_custom_label(&self) -> &Option<String>
The custom label string for the total cells.
sourcepub fn total_cell_style(self, input: TableCellStyle) -> Self
pub fn total_cell_style(self, input: TableCellStyle) -> Self
Cell styling options for the total cells.
sourcepub fn set_total_cell_style(self, input: Option<TableCellStyle>) -> Self
pub fn set_total_cell_style(self, input: Option<TableCellStyle>) -> Self
Cell styling options for the total cells.
sourcepub fn get_total_cell_style(&self) -> &Option<TableCellStyle>
pub fn get_total_cell_style(&self) -> &Option<TableCellStyle>
Cell styling options for the total cells.
sourcepub fn total_aggregation_options(self, input: TotalAggregationOption) -> Self
pub fn total_aggregation_options(self, input: TotalAggregationOption) -> Self
Appends an item to total_aggregation_options.
To override the contents of this collection use set_total_aggregation_options.
The total aggregation settings for each value field.
sourcepub fn set_total_aggregation_options(
self,
input: Option<Vec<TotalAggregationOption>>,
) -> Self
pub fn set_total_aggregation_options( self, input: Option<Vec<TotalAggregationOption>>, ) -> Self
The total aggregation settings for each value field.
sourcepub fn get_total_aggregation_options(
&self,
) -> &Option<Vec<TotalAggregationOption>>
pub fn get_total_aggregation_options( &self, ) -> &Option<Vec<TotalAggregationOption>>
The total aggregation settings for each value field.
sourcepub fn build(self) -> TotalOptions
pub fn build(self) -> TotalOptions
Consumes the builder and constructs a TotalOptions.
Trait Implementations§
source§impl Clone for TotalOptionsBuilder
impl Clone for TotalOptionsBuilder
source§fn clone(&self) -> TotalOptionsBuilder
fn clone(&self) -> TotalOptionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TotalOptionsBuilder
impl Debug for TotalOptionsBuilder
source§impl Default for TotalOptionsBuilder
impl Default for TotalOptionsBuilder
source§fn default() -> TotalOptionsBuilder
fn default() -> TotalOptionsBuilder
source§impl PartialEq for TotalOptionsBuilder
impl PartialEq for TotalOptionsBuilder
source§fn eq(&self, other: &TotalOptionsBuilder) -> bool
fn eq(&self, other: &TotalOptionsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TotalOptionsBuilder
Auto Trait Implementations§
impl Freeze for TotalOptionsBuilder
impl RefUnwindSafe for TotalOptionsBuilder
impl Send for TotalOptionsBuilder
impl Sync for TotalOptionsBuilder
impl Unpin for TotalOptionsBuilder
impl UnwindSafe for TotalOptionsBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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