Struct aws_sdk_quicksight::types::TableCellStyle
source · #[non_exhaustive]pub struct TableCellStyle { /* private fields */ }Expand description
The table cell style for a cell in pivot table or table visual.
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
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 TableCellStyle
impl Debug for TableCellStyle
source§impl PartialEq<TableCellStyle> for TableCellStyle
impl PartialEq<TableCellStyle> for TableCellStyle
source§fn eq(&self, other: &TableCellStyle) -> bool
fn eq(&self, other: &TableCellStyle) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableCellStyle
Auto Trait Implementations§
impl RefUnwindSafe for TableCellStyle
impl Send for TableCellStyle
impl Sync for TableCellStyle
impl Unpin for TableCellStyle
impl UnwindSafe for TableCellStyle
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