#[non_exhaustive]pub struct BodySectionRepeatDimensionConfiguration {
pub dynamic_category_dimension_configuration: Option<BodySectionDynamicCategoryDimensionConfiguration>,
pub dynamic_numeric_dimension_configuration: Option<BodySectionDynamicNumericDimensionConfiguration>,
}Expand description
Describes the dataset column and constraints for the dynamic values used to repeat the contents of a section. The dataset column is either Category or Numeric column configuration
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dynamic_category_dimension_configuration: Option<BodySectionDynamicCategoryDimensionConfiguration>Describes the Category dataset column and constraints around the dynamic values that will be used in repeating the section contents.
dynamic_numeric_dimension_configuration: Option<BodySectionDynamicNumericDimensionConfiguration>Describes the Numeric dataset column and constraints around the dynamic values used to repeat the contents of a section.
Implementations§
source§impl BodySectionRepeatDimensionConfiguration
impl BodySectionRepeatDimensionConfiguration
sourcepub fn dynamic_category_dimension_configuration(
&self,
) -> Option<&BodySectionDynamicCategoryDimensionConfiguration>
pub fn 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,
) -> Option<&BodySectionDynamicNumericDimensionConfiguration>
pub fn 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.
source§impl BodySectionRepeatDimensionConfiguration
impl BodySectionRepeatDimensionConfiguration
sourcepub fn builder() -> BodySectionRepeatDimensionConfigurationBuilder
pub fn builder() -> BodySectionRepeatDimensionConfigurationBuilder
Creates a new builder-style object to manufacture BodySectionRepeatDimensionConfiguration.
Trait Implementations§
source§impl Clone for BodySectionRepeatDimensionConfiguration
impl Clone for BodySectionRepeatDimensionConfiguration
source§fn clone(&self) -> BodySectionRepeatDimensionConfiguration
fn clone(&self) -> BodySectionRepeatDimensionConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BodySectionRepeatDimensionConfiguration
impl PartialEq for BodySectionRepeatDimensionConfiguration
source§fn eq(&self, other: &BodySectionRepeatDimensionConfiguration) -> bool
fn eq(&self, other: &BodySectionRepeatDimensionConfiguration) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BodySectionRepeatDimensionConfiguration
Auto Trait Implementations§
impl Freeze for BodySectionRepeatDimensionConfiguration
impl RefUnwindSafe for BodySectionRepeatDimensionConfiguration
impl Send for BodySectionRepeatDimensionConfiguration
impl Sync for BodySectionRepeatDimensionConfiguration
impl Unpin for BodySectionRepeatDimensionConfiguration
impl UnwindSafe for BodySectionRepeatDimensionConfiguration
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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