#[non_exhaustive]pub struct MultiMeasureAttributeMappingBuilder { /* private fields */ }
Expand description
A builder for MultiMeasureAttributeMapping
.
Implementations§
source§impl MultiMeasureAttributeMappingBuilder
impl MultiMeasureAttributeMappingBuilder
sourcepub fn source_column(self, input: impl Into<String>) -> Self
pub fn source_column(self, input: impl Into<String>) -> Self
Source column from where the attribute value is to be read.
sourcepub fn set_source_column(self, input: Option<String>) -> Self
pub fn set_source_column(self, input: Option<String>) -> Self
Source column from where the attribute value is to be read.
sourcepub fn get_source_column(&self) -> &Option<String>
pub fn get_source_column(&self) -> &Option<String>
Source column from where the attribute value is to be read.
sourcepub fn target_multi_measure_attribute_name(
self,
input: impl Into<String>
) -> Self
pub fn target_multi_measure_attribute_name( self, input: impl Into<String> ) -> Self
Custom name to be used for attribute name in derived table. If not provided, source column name would be used.
sourcepub fn set_target_multi_measure_attribute_name(
self,
input: Option<String>
) -> Self
pub fn set_target_multi_measure_attribute_name( self, input: Option<String> ) -> Self
Custom name to be used for attribute name in derived table. If not provided, source column name would be used.
sourcepub fn get_target_multi_measure_attribute_name(&self) -> &Option<String>
pub fn get_target_multi_measure_attribute_name(&self) -> &Option<String>
Custom name to be used for attribute name in derived table. If not provided, source column name would be used.
sourcepub fn measure_value_type(self, input: ScalarMeasureValueType) -> Self
pub fn measure_value_type(self, input: ScalarMeasureValueType) -> Self
Type of the attribute to be read from the source column.
sourcepub fn set_measure_value_type(
self,
input: Option<ScalarMeasureValueType>
) -> Self
pub fn set_measure_value_type( self, input: Option<ScalarMeasureValueType> ) -> Self
Type of the attribute to be read from the source column.
sourcepub fn get_measure_value_type(&self) -> &Option<ScalarMeasureValueType>
pub fn get_measure_value_type(&self) -> &Option<ScalarMeasureValueType>
Type of the attribute to be read from the source column.
sourcepub fn build(self) -> MultiMeasureAttributeMapping
pub fn build(self) -> MultiMeasureAttributeMapping
Consumes the builder and constructs a MultiMeasureAttributeMapping
.
Trait Implementations§
source§impl Clone for MultiMeasureAttributeMappingBuilder
impl Clone for MultiMeasureAttributeMappingBuilder
source§fn clone(&self) -> MultiMeasureAttributeMappingBuilder
fn clone(&self) -> MultiMeasureAttributeMappingBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for MultiMeasureAttributeMappingBuilder
impl Default for MultiMeasureAttributeMappingBuilder
source§fn default() -> MultiMeasureAttributeMappingBuilder
fn default() -> MultiMeasureAttributeMappingBuilder
source§impl PartialEq<MultiMeasureAttributeMappingBuilder> for MultiMeasureAttributeMappingBuilder
impl PartialEq<MultiMeasureAttributeMappingBuilder> for MultiMeasureAttributeMappingBuilder
source§fn eq(&self, other: &MultiMeasureAttributeMappingBuilder) -> bool
fn eq(&self, other: &MultiMeasureAttributeMappingBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.