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