Struct aws_sdk_quicksight::types::DimensionField
source · #[non_exhaustive]pub struct DimensionField {
pub numerical_dimension_field: Option<NumericalDimensionField>,
pub categorical_dimension_field: Option<CategoricalDimensionField>,
pub date_dimension_field: Option<DateDimensionField>,
}
Expand description
The dimension type field.
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.numerical_dimension_field: Option<NumericalDimensionField>
The dimension type field with numerical type columns.
categorical_dimension_field: Option<CategoricalDimensionField>
The dimension type field with categorical type columns.
date_dimension_field: Option<DateDimensionField>
The dimension type field with date type columns.
Implementations§
source§impl DimensionField
impl DimensionField
sourcepub fn numerical_dimension_field(&self) -> Option<&NumericalDimensionField>
pub fn numerical_dimension_field(&self) -> Option<&NumericalDimensionField>
The dimension type field with numerical type columns.
sourcepub fn categorical_dimension_field(&self) -> Option<&CategoricalDimensionField>
pub fn categorical_dimension_field(&self) -> Option<&CategoricalDimensionField>
The dimension type field with categorical type columns.
sourcepub fn date_dimension_field(&self) -> Option<&DateDimensionField>
pub fn date_dimension_field(&self) -> Option<&DateDimensionField>
The dimension type field with date type columns.
source§impl DimensionField
impl DimensionField
sourcepub fn builder() -> DimensionFieldBuilder
pub fn builder() -> DimensionFieldBuilder
Creates a new builder-style object to manufacture DimensionField
.
Trait Implementations§
source§impl Clone for DimensionField
impl Clone for DimensionField
source§fn clone(&self) -> DimensionField
fn clone(&self) -> DimensionField
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 DimensionField
impl Debug for DimensionField
source§impl PartialEq for DimensionField
impl PartialEq for DimensionField
source§fn eq(&self, other: &DimensionField) -> bool
fn eq(&self, other: &DimensionField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DimensionField
Auto Trait Implementations§
impl RefUnwindSafe for DimensionField
impl Send for DimensionField
impl Sync for DimensionField
impl Unpin for DimensionField
impl UnwindSafe for DimensionField
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.