Struct aws_sdk_quicksight::types::builders::TableOptionsBuilder
source · #[non_exhaustive]pub struct TableOptionsBuilder { /* private fields */ }
Expand description
A builder for TableOptions
.
Implementations§
source§impl TableOptionsBuilder
impl TableOptionsBuilder
sourcepub fn orientation(self, input: TableOrientation) -> Self
pub fn orientation(self, input: TableOrientation) -> Self
The orientation (vertical, horizontal) for a table.
sourcepub fn set_orientation(self, input: Option<TableOrientation>) -> Self
pub fn set_orientation(self, input: Option<TableOrientation>) -> Self
The orientation (vertical, horizontal) for a table.
sourcepub fn get_orientation(&self) -> &Option<TableOrientation>
pub fn get_orientation(&self) -> &Option<TableOrientation>
The orientation (vertical, horizontal) for a table.
sourcepub fn header_style(self, input: TableCellStyle) -> Self
pub fn header_style(self, input: TableCellStyle) -> Self
The table cell style of a table header.
sourcepub fn set_header_style(self, input: Option<TableCellStyle>) -> Self
pub fn set_header_style(self, input: Option<TableCellStyle>) -> Self
The table cell style of a table header.
sourcepub fn get_header_style(&self) -> &Option<TableCellStyle>
pub fn get_header_style(&self) -> &Option<TableCellStyle>
The table cell style of a table header.
sourcepub fn cell_style(self, input: TableCellStyle) -> Self
pub fn cell_style(self, input: TableCellStyle) -> Self
The table cell style of table cells.
sourcepub fn set_cell_style(self, input: Option<TableCellStyle>) -> Self
pub fn set_cell_style(self, input: Option<TableCellStyle>) -> Self
The table cell style of table cells.
sourcepub fn get_cell_style(&self) -> &Option<TableCellStyle>
pub fn get_cell_style(&self) -> &Option<TableCellStyle>
The table cell style of table cells.
sourcepub fn row_alternate_color_options(
self,
input: RowAlternateColorOptions,
) -> Self
pub fn row_alternate_color_options( self, input: RowAlternateColorOptions, ) -> Self
The row alternate color options (widget status, row alternate colors) for a table.
sourcepub fn set_row_alternate_color_options(
self,
input: Option<RowAlternateColorOptions>,
) -> Self
pub fn set_row_alternate_color_options( self, input: Option<RowAlternateColorOptions>, ) -> Self
The row alternate color options (widget status, row alternate colors) for a table.
sourcepub fn get_row_alternate_color_options(
&self,
) -> &Option<RowAlternateColorOptions>
pub fn get_row_alternate_color_options( &self, ) -> &Option<RowAlternateColorOptions>
The row alternate color options (widget status, row alternate colors) for a table.
sourcepub fn build(self) -> TableOptions
pub fn build(self) -> TableOptions
Consumes the builder and constructs a TableOptions
.
Trait Implementations§
source§impl Clone for TableOptionsBuilder
impl Clone for TableOptionsBuilder
source§fn clone(&self) -> TableOptionsBuilder
fn clone(&self) -> TableOptionsBuilder
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 TableOptionsBuilder
impl Debug for TableOptionsBuilder
source§impl Default for TableOptionsBuilder
impl Default for TableOptionsBuilder
source§fn default() -> TableOptionsBuilder
fn default() -> TableOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TableOptionsBuilder
impl PartialEq for TableOptionsBuilder
impl StructuralPartialEq for TableOptionsBuilder
Auto Trait Implementations§
impl Freeze for TableOptionsBuilder
impl RefUnwindSafe for TableOptionsBuilder
impl Send for TableOptionsBuilder
impl Sync for TableOptionsBuilder
impl Unpin for TableOptionsBuilder
impl UnwindSafe for TableOptionsBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.