Struct aws_sdk_quicksight::types::TableCellStyle
source · #[non_exhaustive]pub struct TableCellStyle {
pub visibility: Option<Visibility>,
pub font_configuration: Option<FontConfiguration>,
pub text_wrap: Option<TextWrap>,
pub horizontal_text_alignment: Option<HorizontalTextAlignment>,
pub vertical_text_alignment: Option<VerticalTextAlignment>,
pub background_color: Option<String>,
pub height: Option<i32>,
pub border: Option<GlobalTableBorderOptions>,
}
Expand description
The table cell style for a cell in pivot table or 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.visibility: Option<Visibility>
The visibility of the table cells.
font_configuration: Option<FontConfiguration>
The font configuration of the table cells.
text_wrap: Option<TextWrap>
The text wrap (none, wrap) for the table cells.
horizontal_text_alignment: Option<HorizontalTextAlignment>
The horizontal text alignment (left, center, right, auto) for the table cells.
vertical_text_alignment: Option<VerticalTextAlignment>
The vertical text alignment (top, middle, bottom) for the table cells.
background_color: Option<String>
The background color for the table cells.
height: Option<i32>
The height color for the table cells.
border: Option<GlobalTableBorderOptions>
The borders for the table cells.
Implementations§
source§impl TableCellStyle
impl TableCellStyle
sourcepub fn visibility(&self) -> Option<&Visibility>
pub fn visibility(&self) -> Option<&Visibility>
The visibility of the table cells.
sourcepub fn font_configuration(&self) -> Option<&FontConfiguration>
pub fn font_configuration(&self) -> Option<&FontConfiguration>
The font configuration of the table cells.
sourcepub fn horizontal_text_alignment(&self) -> Option<&HorizontalTextAlignment>
pub fn horizontal_text_alignment(&self) -> Option<&HorizontalTextAlignment>
The horizontal text alignment (left, center, right, auto) for the table cells.
sourcepub fn vertical_text_alignment(&self) -> Option<&VerticalTextAlignment>
pub fn vertical_text_alignment(&self) -> Option<&VerticalTextAlignment>
The vertical text alignment (top, middle, bottom) for the table cells.
sourcepub fn background_color(&self) -> Option<&str>
pub fn background_color(&self) -> Option<&str>
The background color for the table cells.
sourcepub fn border(&self) -> Option<&GlobalTableBorderOptions>
pub fn border(&self) -> Option<&GlobalTableBorderOptions>
The borders for the table cells.
source§impl TableCellStyle
impl TableCellStyle
sourcepub fn builder() -> TableCellStyleBuilder
pub fn builder() -> TableCellStyleBuilder
Creates a new builder-style object to manufacture TableCellStyle
.
Trait Implementations§
source§impl Clone for TableCellStyle
impl Clone for TableCellStyle
source§fn clone(&self) -> TableCellStyle
fn clone(&self) -> TableCellStyle
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TableCellStyle
impl Debug for TableCellStyle
source§impl PartialEq for TableCellStyle
impl PartialEq for TableCellStyle
source§fn eq(&self, other: &TableCellStyle) -> bool
fn eq(&self, other: &TableCellStyle) -> bool
self
and other
values to be equal, and is used
by ==
.