#[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
sourcepub fn set_source_column(self, input: Option<String>) -> Self
pub fn set_source_column(self, input: Option<String>) -> Self
sourcepub fn get_source_column(&self) -> &Option<String>
pub fn get_source_column(&self) -> &Option<String>
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
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
sourcepub fn get_target_multi_measure_attribute_name(&self) -> &Option<String>
pub fn get_target_multi_measure_attribute_name(&self) -> &Option<String>
sourcepub fn measure_value_type(self, input: ScalarMeasureValueType) -> Self
pub fn measure_value_type(self, input: ScalarMeasureValueType) -> Self
sourcepub fn set_measure_value_type(
self,
input: Option<ScalarMeasureValueType>
) -> Self
pub fn set_measure_value_type( self, input: Option<ScalarMeasureValueType> ) -> Self
sourcepub fn get_measure_value_type(&self) -> &Option<ScalarMeasureValueType>
pub fn get_measure_value_type(&self) -> &Option<ScalarMeasureValueType>
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
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 Default for MultiMeasureAttributeMappingBuilder
impl Default for MultiMeasureAttributeMappingBuilder
source§fn default() -> MultiMeasureAttributeMappingBuilder
fn default() -> MultiMeasureAttributeMappingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<MultiMeasureAttributeMappingBuilder> for MultiMeasureAttributeMappingBuilder
impl PartialEq<MultiMeasureAttributeMappingBuilder> for MultiMeasureAttributeMappingBuilder
source§fn eq(&self, other: &MultiMeasureAttributeMappingBuilder) -> bool
fn eq(&self, other: &MultiMeasureAttributeMappingBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MultiMeasureAttributeMappingBuilder
Auto Trait Implementations§
impl RefUnwindSafe for MultiMeasureAttributeMappingBuilder
impl Send for MultiMeasureAttributeMappingBuilder
impl Sync for MultiMeasureAttributeMappingBuilder
impl Unpin for MultiMeasureAttributeMappingBuilder
impl UnwindSafe for MultiMeasureAttributeMappingBuilder
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