#[non_exhaustive]pub struct BodySectionRepeatConfiguration {
pub dimension_configurations: Option<Vec<BodySectionRepeatDimensionConfiguration>>,
pub page_break_configuration: Option<BodySectionRepeatPageBreakConfiguration>,
pub non_repeating_visuals: Option<Vec<String>>,
}Expand description
Describes the configurations that are required to declare a section as repeating.
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.dimension_configurations: Option<Vec<BodySectionRepeatDimensionConfiguration>>List of BodySectionRepeatDimensionConfiguration values that describe the dataset column and constraints for the column used to repeat the contents of a section.
page_break_configuration: Option<BodySectionRepeatPageBreakConfiguration>Page break configuration to apply for each repeating instance.
non_repeating_visuals: Option<Vec<String>>List of visuals to exclude from repetition in repeating sections. The visuals will render identically, and ignore the repeating configurations in all repeating instances.
Implementations§
source§impl BodySectionRepeatConfiguration
impl BodySectionRepeatConfiguration
sourcepub fn dimension_configurations(
&self,
) -> &[BodySectionRepeatDimensionConfiguration]
pub fn dimension_configurations( &self, ) -> &[BodySectionRepeatDimensionConfiguration]
List of BodySectionRepeatDimensionConfiguration values that describe the dataset column and constraints for the column used to repeat the contents of a section.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .dimension_configurations.is_none().
sourcepub fn page_break_configuration(
&self,
) -> Option<&BodySectionRepeatPageBreakConfiguration>
pub fn page_break_configuration( &self, ) -> Option<&BodySectionRepeatPageBreakConfiguration>
Page break configuration to apply for each repeating instance.
sourcepub fn non_repeating_visuals(&self) -> &[String]
pub fn non_repeating_visuals(&self) -> &[String]
List of visuals to exclude from repetition in repeating sections. The visuals will render identically, and ignore the repeating configurations in all repeating instances.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .non_repeating_visuals.is_none().
source§impl BodySectionRepeatConfiguration
impl BodySectionRepeatConfiguration
sourcepub fn builder() -> BodySectionRepeatConfigurationBuilder
pub fn builder() -> BodySectionRepeatConfigurationBuilder
Creates a new builder-style object to manufacture BodySectionRepeatConfiguration.
Trait Implementations§
source§impl Clone for BodySectionRepeatConfiguration
impl Clone for BodySectionRepeatConfiguration
source§fn clone(&self) -> BodySectionRepeatConfiguration
fn clone(&self) -> BodySectionRepeatConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BodySectionRepeatConfiguration
impl PartialEq for BodySectionRepeatConfiguration
source§fn eq(&self, other: &BodySectionRepeatConfiguration) -> bool
fn eq(&self, other: &BodySectionRepeatConfiguration) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BodySectionRepeatConfiguration
Auto Trait Implementations§
impl Freeze for BodySectionRepeatConfiguration
impl RefUnwindSafe for BodySectionRepeatConfiguration
impl Send for BodySectionRepeatConfiguration
impl Sync for BodySectionRepeatConfiguration
impl Unpin for BodySectionRepeatConfiguration
impl UnwindSafe for BodySectionRepeatConfiguration
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