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
impl StructuralPartialEq for TableCellStyle
Auto Trait Implementations§
impl Freeze for TableCellStyle
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
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)
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