#[non_exhaustive]pub struct SameSheetTargetVisualConfigurationBuilder { /* private fields */ }Expand description
A builder for SameSheetTargetVisualConfiguration.
Implementations§
source§impl SameSheetTargetVisualConfigurationBuilder
impl SameSheetTargetVisualConfigurationBuilder
sourcepub fn target_visuals(self, input: impl Into<String>) -> Self
pub fn target_visuals(self, input: impl Into<String>) -> Self
Appends an item to target_visuals.
To override the contents of this collection use set_target_visuals.
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn set_target_visuals(self, input: Option<Vec<String>>) -> Self
pub fn set_target_visuals(self, input: Option<Vec<String>>) -> Self
A list of the target visual IDs that are located in the same sheet of the analysis.
sourcepub fn target_visual_options(self, input: TargetVisualOptions) -> Self
pub fn target_visual_options(self, input: TargetVisualOptions) -> Self
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.
sourcepub fn set_target_visual_options(
self,
input: Option<TargetVisualOptions>
) -> Self
pub fn set_target_visual_options( self, input: Option<TargetVisualOptions> ) -> Self
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.
sourcepub fn build(self) -> SameSheetTargetVisualConfiguration
pub fn build(self) -> SameSheetTargetVisualConfiguration
Consumes the builder and constructs a SameSheetTargetVisualConfiguration.
Trait Implementations§
source§impl Clone for SameSheetTargetVisualConfigurationBuilder
impl Clone for SameSheetTargetVisualConfigurationBuilder
source§fn clone(&self) -> SameSheetTargetVisualConfigurationBuilder
fn clone(&self) -> SameSheetTargetVisualConfigurationBuilder
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 Default for SameSheetTargetVisualConfigurationBuilder
impl Default for SameSheetTargetVisualConfigurationBuilder
source§fn default() -> SameSheetTargetVisualConfigurationBuilder
fn default() -> SameSheetTargetVisualConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SameSheetTargetVisualConfigurationBuilder> for SameSheetTargetVisualConfigurationBuilder
impl PartialEq<SameSheetTargetVisualConfigurationBuilder> for SameSheetTargetVisualConfigurationBuilder
source§fn eq(&self, other: &SameSheetTargetVisualConfigurationBuilder) -> bool
fn eq(&self, other: &SameSheetTargetVisualConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SameSheetTargetVisualConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SameSheetTargetVisualConfigurationBuilder
impl Send for SameSheetTargetVisualConfigurationBuilder
impl Sync for SameSheetTargetVisualConfigurationBuilder
impl Unpin for SameSheetTargetVisualConfigurationBuilder
impl UnwindSafe for SameSheetTargetVisualConfigurationBuilder
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