#[non_exhaustive]pub struct MultiMeasureMappingsBuilder { /* private fields */ }
Expand description
A builder for MultiMeasureMappings
.
Implementations§
source§impl MultiMeasureMappingsBuilder
impl MultiMeasureMappingsBuilder
sourcepub fn target_multi_measure_name(self, input: impl Into<String>) -> Self
pub fn target_multi_measure_name(self, input: impl Into<String>) -> Self
sourcepub fn set_target_multi_measure_name(self, input: Option<String>) -> Self
pub fn set_target_multi_measure_name(self, input: Option<String>) -> Self
sourcepub fn get_target_multi_measure_name(&self) -> &Option<String>
pub fn get_target_multi_measure_name(&self) -> &Option<String>
sourcepub fn multi_measure_attribute_mappings(
self,
input: MultiMeasureAttributeMapping
) -> Self
pub fn multi_measure_attribute_mappings( self, input: MultiMeasureAttributeMapping ) -> Self
Appends an item to multi_measure_attribute_mappings
.
To override the contents of this collection use set_multi_measure_attribute_mappings
.
sourcepub fn set_multi_measure_attribute_mappings(
self,
input: Option<Vec<MultiMeasureAttributeMapping>>
) -> Self
pub fn set_multi_measure_attribute_mappings( self, input: Option<Vec<MultiMeasureAttributeMapping>> ) -> Self
sourcepub fn get_multi_measure_attribute_mappings(
&self
) -> &Option<Vec<MultiMeasureAttributeMapping>>
pub fn get_multi_measure_attribute_mappings( &self ) -> &Option<Vec<MultiMeasureAttributeMapping>>
sourcepub fn build(self) -> MultiMeasureMappings
pub fn build(self) -> MultiMeasureMappings
Consumes the builder and constructs a MultiMeasureMappings
.
Trait Implementations§
source§impl Clone for MultiMeasureMappingsBuilder
impl Clone for MultiMeasureMappingsBuilder
source§fn clone(&self) -> MultiMeasureMappingsBuilder
fn clone(&self) -> MultiMeasureMappingsBuilder
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 MultiMeasureMappingsBuilder
impl Debug for MultiMeasureMappingsBuilder
source§impl Default for MultiMeasureMappingsBuilder
impl Default for MultiMeasureMappingsBuilder
source§fn default() -> MultiMeasureMappingsBuilder
fn default() -> MultiMeasureMappingsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<MultiMeasureMappingsBuilder> for MultiMeasureMappingsBuilder
impl PartialEq<MultiMeasureMappingsBuilder> for MultiMeasureMappingsBuilder
source§fn eq(&self, other: &MultiMeasureMappingsBuilder) -> bool
fn eq(&self, other: &MultiMeasureMappingsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MultiMeasureMappingsBuilder
Auto Trait Implementations§
impl RefUnwindSafe for MultiMeasureMappingsBuilder
impl Send for MultiMeasureMappingsBuilder
impl Sync for MultiMeasureMappingsBuilder
impl Unpin for MultiMeasureMappingsBuilder
impl UnwindSafe for MultiMeasureMappingsBuilder
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