Struct aws_sdk_quicksight::types::TableBorderOptions
source · #[non_exhaustive]pub struct TableBorderOptions {
pub color: Option<String>,
pub thickness: Option<i32>,
pub style: Option<TableBorderStyle>,
}
Expand description
The border options for a table border.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.color: Option<String>
The color of a table border.
thickness: Option<i32>
The thickness of a table border.
style: Option<TableBorderStyle>
The style (none, solid) of a table border.
Implementations§
source§impl TableBorderOptions
impl TableBorderOptions
sourcepub fn builder() -> TableBorderOptionsBuilder
pub fn builder() -> TableBorderOptionsBuilder
Creates a new builder-style object to manufacture TableBorderOptions
.
Trait Implementations§
source§impl Clone for TableBorderOptions
impl Clone for TableBorderOptions
source§fn clone(&self) -> TableBorderOptions
fn clone(&self) -> TableBorderOptions
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 TableBorderOptions
impl Debug for TableBorderOptions
source§impl PartialEq for TableBorderOptions
impl PartialEq for TableBorderOptions
source§fn eq(&self, other: &TableBorderOptions) -> bool
fn eq(&self, other: &TableBorderOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TableBorderOptions
Auto Trait Implementations§
impl RefUnwindSafe for TableBorderOptions
impl Send for TableBorderOptions
impl Sync for TableBorderOptions
impl Unpin for TableBorderOptions
impl UnwindSafe for TableBorderOptions
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> 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>
Creates a shared type from an unshared type.