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