Struct aws_sdk_quicksight::types::TableFieldOptions
source · #[non_exhaustive]pub struct TableFieldOptions {
pub selected_field_options: Option<Vec<TableFieldOption>>,
pub order: Option<Vec<String>>,
}Expand description
The field options for a table visual.
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.selected_field_options: Option<Vec<TableFieldOption>>The selected field options for the table field options.
order: Option<Vec<String>>The order of field IDs of the field options for a table visual.
Implementations§
source§impl TableFieldOptions
impl TableFieldOptions
sourcepub fn selected_field_options(&self) -> Option<&[TableFieldOption]>
pub fn selected_field_options(&self) -> Option<&[TableFieldOption]>
The selected field options for the table field options.
source§impl TableFieldOptions
impl TableFieldOptions
sourcepub fn builder() -> TableFieldOptionsBuilder
pub fn builder() -> TableFieldOptionsBuilder
Creates a new builder-style object to manufacture TableFieldOptions.
Trait Implementations§
source§impl Clone for TableFieldOptions
impl Clone for TableFieldOptions
source§fn clone(&self) -> TableFieldOptions
fn clone(&self) -> TableFieldOptions
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 TableFieldOptions
impl Debug for TableFieldOptions
source§impl PartialEq<TableFieldOptions> for TableFieldOptions
impl PartialEq<TableFieldOptions> for TableFieldOptions
source§fn eq(&self, other: &TableFieldOptions) -> bool
fn eq(&self, other: &TableFieldOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableFieldOptions
Auto Trait Implementations§
impl RefUnwindSafe for TableFieldOptions
impl Send for TableFieldOptions
impl Sync for TableFieldOptions
impl Unpin for TableFieldOptions
impl UnwindSafe for TableFieldOptions
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