#[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() -> SameSheetTargetVisualConfigurationBuilder
pub fn builder() -> SameSheetTargetVisualConfigurationBuilder
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 ==.impl StructuralPartialEq for SameSheetTargetVisualConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for SameSheetTargetVisualConfiguration
impl Send for SameSheetTargetVisualConfiguration
impl Sync for SameSheetTargetVisualConfiguration
impl Unpin for SameSheetTargetVisualConfiguration
impl UnwindSafe for SameSheetTargetVisualConfiguration
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