Struct aws_sdk_quicksight::types::TableSideBorderOptions
source · #[non_exhaustive]pub struct TableSideBorderOptions {
pub inner_vertical: Option<TableBorderOptions>,
pub inner_horizontal: Option<TableBorderOptions>,
pub left: Option<TableBorderOptions>,
pub right: Option<TableBorderOptions>,
pub top: Option<TableBorderOptions>,
pub bottom: Option<TableBorderOptions>,
}
Expand description
The side border options for a table.
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.inner_vertical: Option<TableBorderOptions>
The table border options of the inner vertical border.
inner_horizontal: Option<TableBorderOptions>
The table border options of the inner horizontal border.
left: Option<TableBorderOptions>
The table border options of the left border.
right: Option<TableBorderOptions>
The table border options of the right border.
top: Option<TableBorderOptions>
The table border options of the top border.
bottom: Option<TableBorderOptions>
The table border options of the bottom border.
Implementations§
source§impl TableSideBorderOptions
impl TableSideBorderOptions
sourcepub fn inner_vertical(&self) -> Option<&TableBorderOptions>
pub fn inner_vertical(&self) -> Option<&TableBorderOptions>
The table border options of the inner vertical border.
sourcepub fn inner_horizontal(&self) -> Option<&TableBorderOptions>
pub fn inner_horizontal(&self) -> Option<&TableBorderOptions>
The table border options of the inner horizontal border.
sourcepub fn left(&self) -> Option<&TableBorderOptions>
pub fn left(&self) -> Option<&TableBorderOptions>
The table border options of the left border.
sourcepub fn right(&self) -> Option<&TableBorderOptions>
pub fn right(&self) -> Option<&TableBorderOptions>
The table border options of the right border.
sourcepub fn top(&self) -> Option<&TableBorderOptions>
pub fn top(&self) -> Option<&TableBorderOptions>
The table border options of the top border.
sourcepub fn bottom(&self) -> Option<&TableBorderOptions>
pub fn bottom(&self) -> Option<&TableBorderOptions>
The table border options of the bottom border.
source§impl TableSideBorderOptions
impl TableSideBorderOptions
sourcepub fn builder() -> TableSideBorderOptionsBuilder
pub fn builder() -> TableSideBorderOptionsBuilder
Creates a new builder-style object to manufacture TableSideBorderOptions
.
Trait Implementations§
source§impl Clone for TableSideBorderOptions
impl Clone for TableSideBorderOptions
source§fn clone(&self) -> TableSideBorderOptions
fn clone(&self) -> TableSideBorderOptions
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 TableSideBorderOptions
impl Debug for TableSideBorderOptions
source§impl PartialEq for TableSideBorderOptions
impl PartialEq for TableSideBorderOptions
impl StructuralPartialEq for TableSideBorderOptions
Auto Trait Implementations§
impl Freeze for TableSideBorderOptions
impl RefUnwindSafe for TableSideBorderOptions
impl Send for TableSideBorderOptions
impl Sync for TableSideBorderOptions
impl Unpin for TableSideBorderOptions
impl UnwindSafe for TableSideBorderOptions
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.