#[non_exhaustive]pub struct BodySectionRepeatDimensionConfigurationBuilder { /* private fields */ }Expand description
A builder for BodySectionRepeatDimensionConfiguration.
Implementations§
source§impl BodySectionRepeatDimensionConfigurationBuilder
impl BodySectionRepeatDimensionConfigurationBuilder
sourcepub fn dynamic_category_dimension_configuration(
self,
input: BodySectionDynamicCategoryDimensionConfiguration,
) -> Self
pub fn dynamic_category_dimension_configuration( self, input: BodySectionDynamicCategoryDimensionConfiguration, ) -> Self
Describes the Category dataset column and constraints around the dynamic values that will be used in repeating the section contents.
sourcepub fn set_dynamic_category_dimension_configuration(
self,
input: Option<BodySectionDynamicCategoryDimensionConfiguration>,
) -> Self
pub fn set_dynamic_category_dimension_configuration( self, input: Option<BodySectionDynamicCategoryDimensionConfiguration>, ) -> Self
Describes the Category dataset column and constraints around the dynamic values that will be used in repeating the section contents.
sourcepub fn get_dynamic_category_dimension_configuration(
&self,
) -> &Option<BodySectionDynamicCategoryDimensionConfiguration>
pub fn get_dynamic_category_dimension_configuration( &self, ) -> &Option<BodySectionDynamicCategoryDimensionConfiguration>
Describes the Category dataset column and constraints around the dynamic values that will be used in repeating the section contents.
sourcepub fn dynamic_numeric_dimension_configuration(
self,
input: BodySectionDynamicNumericDimensionConfiguration,
) -> Self
pub fn dynamic_numeric_dimension_configuration( self, input: BodySectionDynamicNumericDimensionConfiguration, ) -> Self
Describes the Numeric dataset column and constraints around the dynamic values used to repeat the contents of a section.
sourcepub fn set_dynamic_numeric_dimension_configuration(
self,
input: Option<BodySectionDynamicNumericDimensionConfiguration>,
) -> Self
pub fn set_dynamic_numeric_dimension_configuration( self, input: Option<BodySectionDynamicNumericDimensionConfiguration>, ) -> Self
Describes the Numeric dataset column and constraints around the dynamic values used to repeat the contents of a section.
sourcepub fn get_dynamic_numeric_dimension_configuration(
&self,
) -> &Option<BodySectionDynamicNumericDimensionConfiguration>
pub fn get_dynamic_numeric_dimension_configuration( &self, ) -> &Option<BodySectionDynamicNumericDimensionConfiguration>
Describes the Numeric dataset column and constraints around the dynamic values used to repeat the contents of a section.
sourcepub fn build(self) -> BodySectionRepeatDimensionConfiguration
pub fn build(self) -> BodySectionRepeatDimensionConfiguration
Consumes the builder and constructs a BodySectionRepeatDimensionConfiguration.
Trait Implementations§
source§impl Clone for BodySectionRepeatDimensionConfigurationBuilder
impl Clone for BodySectionRepeatDimensionConfigurationBuilder
source§fn clone(&self) -> BodySectionRepeatDimensionConfigurationBuilder
fn clone(&self) -> BodySectionRepeatDimensionConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BodySectionRepeatDimensionConfigurationBuilder
impl Default for BodySectionRepeatDimensionConfigurationBuilder
source§fn default() -> BodySectionRepeatDimensionConfigurationBuilder
fn default() -> BodySectionRepeatDimensionConfigurationBuilder
source§impl PartialEq for BodySectionRepeatDimensionConfigurationBuilder
impl PartialEq for BodySectionRepeatDimensionConfigurationBuilder
source§fn eq(&self, other: &BodySectionRepeatDimensionConfigurationBuilder) -> bool
fn eq(&self, other: &BodySectionRepeatDimensionConfigurationBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BodySectionRepeatDimensionConfigurationBuilder
Auto Trait Implementations§
impl Freeze for BodySectionRepeatDimensionConfigurationBuilder
impl RefUnwindSafe for BodySectionRepeatDimensionConfigurationBuilder
impl Send for BodySectionRepeatDimensionConfigurationBuilder
impl Sync for BodySectionRepeatDimensionConfigurationBuilder
impl Unpin for BodySectionRepeatDimensionConfigurationBuilder
impl UnwindSafe for BodySectionRepeatDimensionConfigurationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more