#[non_exhaustive]pub struct SameSheetTargetVisualConfiguration { /* private fields */ }
Expand description
The configuration of the same-sheet target visuals that you want to be filtered.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Implementations§
source§impl SameSheetTargetVisualConfiguration
impl SameSheetTargetVisualConfiguration
sourcepub fn target_visuals(&self) -> Option<&[String]>
pub fn target_visuals(&self) -> Option<&[String]>
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn target_visual_options(&self) -> Option<&TargetVisualOptions>
pub fn target_visual_options(&self) -> Option<&TargetVisualOptions>
The options that choose the target visual in the same sheet.
Valid values are defined as follows:
-
ALL_VISUALS
: Applies the filter operation to all visuals in the same sheet.
source§impl SameSheetTargetVisualConfiguration
impl SameSheetTargetVisualConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SameSheetTargetVisualConfiguration
.
Trait Implementations§
source§impl Clone for SameSheetTargetVisualConfiguration
impl Clone for SameSheetTargetVisualConfiguration
source§fn clone(&self) -> SameSheetTargetVisualConfiguration
fn clone(&self) -> SameSheetTargetVisualConfiguration
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 PartialEq<SameSheetTargetVisualConfiguration> for SameSheetTargetVisualConfiguration
impl PartialEq<SameSheetTargetVisualConfiguration> for SameSheetTargetVisualConfiguration
source§fn eq(&self, other: &SameSheetTargetVisualConfiguration) -> bool
fn eq(&self, other: &SameSheetTargetVisualConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.