Struct aws_sdk_quicksight::types::NumericalDimensionField
source · #[non_exhaustive]pub struct NumericalDimensionField {
pub field_id: String,
pub column: Option<ColumnIdentifier>,
pub hierarchy_id: Option<String>,
pub format_configuration: Option<NumberFormatConfiguration>,
}Expand description
The dimension type field with numerical type columns.
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.field_id: StringThe custom field ID.
column: Option<ColumnIdentifier>The column that is used in the NumericalDimensionField.
hierarchy_id: Option<String>The custom hierarchy ID.
format_configuration: Option<NumberFormatConfiguration>The format configuration of the field.
Implementations§
source§impl NumericalDimensionField
impl NumericalDimensionField
sourcepub fn column(&self) -> Option<&ColumnIdentifier>
pub fn column(&self) -> Option<&ColumnIdentifier>
The column that is used in the NumericalDimensionField.
sourcepub fn hierarchy_id(&self) -> Option<&str>
pub fn hierarchy_id(&self) -> Option<&str>
The custom hierarchy ID.
sourcepub fn format_configuration(&self) -> Option<&NumberFormatConfiguration>
pub fn format_configuration(&self) -> Option<&NumberFormatConfiguration>
The format configuration of the field.
source§impl NumericalDimensionField
impl NumericalDimensionField
sourcepub fn builder() -> NumericalDimensionFieldBuilder
pub fn builder() -> NumericalDimensionFieldBuilder
Creates a new builder-style object to manufacture NumericalDimensionField.
Trait Implementations§
source§impl Clone for NumericalDimensionField
impl Clone for NumericalDimensionField
source§fn clone(&self) -> NumericalDimensionField
fn clone(&self) -> NumericalDimensionField
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 NumericalDimensionField
impl Debug for NumericalDimensionField
source§impl PartialEq for NumericalDimensionField
impl PartialEq for NumericalDimensionField
source§fn eq(&self, other: &NumericalDimensionField) -> bool
fn eq(&self, other: &NumericalDimensionField) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NumericalDimensionField
Auto Trait Implementations§
impl Freeze for NumericalDimensionField
impl RefUnwindSafe for NumericalDimensionField
impl Send for NumericalDimensionField
impl Sync for NumericalDimensionField
impl Unpin for NumericalDimensionField
impl UnwindSafe for NumericalDimensionField
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.